Why limit PHP to websites? The phpkg serve
command lets you run any phpkg
-compatible package as a standalone web app, straight from a Git URL or local path—no project install, no domain, no hassle. It spins up a local server using PHP’s built-in php -S
, delivering your app’s entry point right to your browser.
Requirements: Needs the PCNTL extension—Unix/Linux/macOS only (no Windows yet).
Pass a Git URL or local path to phpkg serve
:
phpkg serve <package-url> [entry-point]
phpkg serve https://github.com/owner/repo.git
phpkg serve git@github.com:owner/repo.git
Multiple entry points in phpkg.config.json
? Choose one:
phpkg serve https://github.com/php-repos/daily-routine.git dashboard.php
Latest release by default. For a specific version:
phpkg serve https://github.com/php-repos/daily-routine.git --version=v1.0.0
Dev version with a commit:
phpkg serve https://github.com/php-repos/daily-routine.git --version=development#f2ffcee641009d753c72a935a083b2fc650787c1
Serve a package on your machine:
phpkg serve ../relative/path/to/package
phpkg serve /absolute/path/to/package
How It Works: Downloads (or uses local), builds in a temp sandbox, and serves via php -S
(e.g., localhost:8000
). Cleanup happens on OS restart—no project changes.
PHP can do more than web pages—and serve
proves it:
daily-routine
) without Apache or Nginx. Unlike Composer’s web-only focus, phpkg serve
turns PHP into a universal app runner.
Serve the daily-routine
package—a dashboard for your day:
phpkg serve https://github.com/php-repos/daily-routine.git
http://localhost:8000
to see tasks, crypto prices, news, and weather.localhost:8000
(or the port shown) in your browser. phpkg.config.json
for options—see Customization. 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.