phpkg is a lightweight PHP package manager that simplifies your workflow. Forget Composer’s complexity—phpkg
autoloads namespaced functions and classes from Git repositories directly, with no central registry or bloated vendor/
dirs. Whether you’re building apps or running scripts, phpkg
empowers both object-oriented and functional programming, getting you coding faster.
bash -c "$(curl -fsSL https://raw.github.com/php-repos/phpkg-installation/master/install.sh)"
phpkg run https://github.com/php-repos/chuck-norris
See a Chuck Norris joke in your terminal—no config needed.
To use phpkg
, ensure you have:
php-mbstring
(for string handling), php-zip
(for unpacking archives) and php-curl
(for Git downloads).Windows support coming soon—currently works on Unix/Linux/macOS.
Install phpkg
with one command:
bash -c "$(curl -fsSL https://raw.github.com/php-repos/phpkg-installation/master/install.sh)"
This downloads and sets up phpkg
in your home directory. Open a new terminal to use it (path updated).
phpkg
excels at managing packages and running standalone scripts. Here’s how to get started.
Set Up Your Project
Initialize: Create a new project:
mkdir my-app && cd my-app
phpkg init
Packages/
for dependencies, phpkg.config.json
for settings, and phpkg.config-lock.json
for metadata.Configure: Map your namespaces in phpkg.config.json
:
{
"map": {"App": "src", "Tests": "tests"},
"entry-points": ["public/index.php"],
"packages": []
}
App\
→ src/
, Tests\
→ tests/
.Add a Package: Install from GitHub:
phpkg add https://github.com/php-repos/test-runner.git
test-runner
to Packages/
, updates configs with version and hash.No central repo—just Git URLs. Works with GitHub now, GitLab and others soon.
Build: Compile for development:
phpkg build
builds/development/
, autoloads dependencies into entry points (e.g., public/index.php
).Watch changes live with phpkg watch
or build for production with phpkg build production
.
Add GitHub Token (Optional) For private repos, or when you have many dependencies, add a GitHub token:
phpkg credential github.com <your-token>
GITHUB_TOKEN
env var is set.Run Standalone Packages Execute scripts directly:
phpkg run https://github.com/php-repos/weather
phpkg init
// src/Hello.php
namespace App;
function greet($name) { return "Hello, $name!"; }
// public/index.php
require 'builds/development/phpkg.imports.php';
echo \App\greet('World');
phpkg build
cd builds/development
php public/index.php
Output: “Hello, World!”
phpkg
autoloads namespaced functions like App\greet
—no classes needed for simple tasks.
phpkg
autoloads namespaced functions—not just classes—letting you write simple, reusable functions instead of wrapping everything in objects. Unlike Composer’s class-only PSR-4, this unlocks functional programming in PHP, making your code cleaner and more expressive.vendor/
dirs or lock files slowing you down.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.