Packages evolve—new versions bring fixes, features, or performance boosts. The phpkg update
command lets you effortlessly upgrade a package in your project to the latest version or a specific tag, ensuring you’re always running the best fit for your needs.
packages-directory
and config files with the desired version.Pass the package’s Git URL or an alias to phpkg update
:
phpkg update https://github.com/owner/repo.git
phpkg update https://github.com/owner/repo.git --version=v1.2.3
Set an alias with Alias Command, then update:
phpkg alias my-package https://github.com/owner/repo.git
phpkg update my-package # Latest
phpkg update my-package --version=v1.2.3 # Specific
packages-directory
(e.g., Packages/
), refreshes phpkg.config.json
’s "packages"
, and syncs phpkg.config-lock.json
.Say you’ve got test-runner
from php-repos/test-runner
in your project:
phpkg update https://github.com/php-repos/test-runner.git
phpkg update https://github.com/php-repos/test-runner.git --version=v1.0.1
v1.0.1
.phpkg alias test-runner https://github.com/php-repos/test-runner.git
phpkg update test-runner # Latest
phpkg update test-runner --version=v1.0.1 # Specific
Packages/php-repos/test-runner/
and config files reflect the updated version.phpkg build
after updating to apply changes—see Build Command. 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.