Need a package in your phpkg
project? The add
command grabs any Git repo—public or private—and drops it into your setup, ready to autoload functions and classes. No central registry, no fuss—just find a repo and add it.
Add a package with its Git URL:
phpkg add <package-url>
phpkg add https://github.com/owner/repo.git
phpkg add git@github.com:owner/repo.git
Replace owner
and repo
with the real deal—e.g., php-repos/test-runner
.
Set a shortcut with Alias Command first:
phpkg alias tr https://github.com/php-repos/test-runner.git
phpkg add tr
By default, phpkg
grabs the latest release:
phpkg add https://github.com/php-repos/test-runner.git
--version
: phpkg add https://github.com/php-repos/test-runner.git --version=v1.2.3
phpkg add https://github.com/php-repos/test-runner.git v1 # Latest v1.x.x
phpkg add https://github.com/php-repos/test-runner.git --version=development
Clones the repo if no releases exist.
Busy project or private repo? phpkg
needs a GitHub token to avoid rate limits or access locked code. Set GITHUB_TOKEN
env var or use Credential Command:
phpkg credential github.com <your-token>
Packages/owner/repo
(or your custom packages-directory
). phpkg.config.json
: {
"packages": {
"https://github.com/php-repos/test-runner.git": "v1.2.3"
}
}
phpkg.config-lock.json
: {
"https://github.com/php-repos/test-runner.git": {
"version": "v1.2.3",
"hash": "abc123...",
"owner": "php-repos",
"repo": "test-runner"
}
}
phpkg build
to autoload its functions and classes.Add the test-runner
package:
phpkg add https://github.com/php-repos/test-runner.git
Packages/php-repos/test-runner
. Try a Composer package too:
phpkg add https://github.com/symfony/thanks.git
phpkg
handles any Git repo—Composer or not.
phpkg
picks what’s there. 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.