Once you’ve added packages to your project using phpkg add
, the install
command helps you set up the same environment elsewhere—like a teammate’s machine or a production server. It reads your phpkg.config.json
, fetches the listed packages from Git, and installs them into your packages-directory
. No need to clone repositories by hand!
"packages"
section of your config to download the right versions.From your project’s root directory, run:
phpkg install
phpkg.config.json
’s "packages"
section. "packages-directory"
(defaults to Packages/
). Tip: Run phpkg add
first to define your packages—install
needs that list to work.
After running, check your packages-directory
—all your packages will be there, ready for the next step (like phpkg build
).
Imagine your phpkg.config.json
looks like this:
{
"packages-directory": "vendor",
"packages": {
"https://github.com/php-repos/test-runner.git": "v1.0.0",
"https://github.com/php-repos/datatype.git": "v2.5.0"
}
}
Run phpkg install
, and your vendor/
directory will include:
php-repos/test-runner/
at version v1.0.0
php-repos/datatype/
at version v2.5.0
Next Step: Use phpkg build
to autoload these packages into your project.
phpkg.config.json
to Git to keep installs consistent across machines. GITHUB_TOKEN
environment variable. phpkg.config.json
.For more on managing packages, see the Add Command documentation.
We believe that PHP has enormous untapped potential, and we are dedicated to creating tools that empower developers to harness its full power and capabilities. We aim to unlock this potential by creating tools that help developers harness PHP's full capabilities and extend its power to new heights. To this end, we developed phpkg, a cutting-edge package manager that simplifies the process of using PHP to its fullest extent. With phpkg, developers can take advantage of all that PHP has to offer and build more efficient, scalable, and powerful applications.