Imagine running a PHP tool—like a static analyzer or a weather checker—without embedding it in a project or fussing with dependencies. The phpkg run
command makes this real: it grabs any phpkg
-compatible Git repository, builds it on the fly, and executes it right in your terminal. No installs, no web servers—just pure PHP power at your fingertips.
Pass a Git URL or local path to phpkg run
:
phpkg run <package-url> [entry-point]
HTTPS:
phpkg run https://github.com/owner/repo.git
SSH:
phpkg run git@github.com:owner/repo.git
Multiple entry points in phpkg.config.json
? Specify one:
phpkg run https://github.com/php-repos/chuck-norris.git jokes.php
Latest release by default. For a specific version:
phpkg run https://github.com/php-repos/weather.git --version=v1.2.3
Dev version with a commit:
phpkg run https://github.com/php-repos/chuck-norris.git --version=development#336212f42b0d612a1397e5009f2e3c681851d770
Test a package on your machine:
phpkg run ../relative/path/to/package
phpkg run /absolute/path/to/package
How It Works: Downloads (or uses local), builds in a temp sandbox, runs the entry point, and cleans up on reboot—no project changes.
PHP isn’t just for websites—it’s for tools. The run
command breaks the mold:
phpkg run https://github.com/phpstan/phpstan.git phpstan analyze /path/to/project
phpkg run https://github.com/php-repos/daily-routine.git
Unlike Composer, which ties tools to vendor/
, phpkg run
frees them to stand alone, slashing redundancy and complexity.
Chuck Norris Jokes:
phpkg run https://github.com/php-repos/chuck-norris.git
Output: A Chuck Norris quip from https://api.chucknorris.io/.
Weather Check:
phpkg run https://github.com/php-repos/weather.git
Output: Your local forecast in the terminal.
Static Analysis:
phpkg run https://github.com/phpstan/phpstan.git phpstan analyze ./my-app
phpkg.config.json
for options—check Customization. phpkg add
instead. Companion: Pair with phpkg serve
for web-ready apps—see Serve 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.