Ready to manage dependencies with phpkg
? The init
command sets up your project in seconds, creating the foundation for autoloading functions and classes from Git repos—no Composer clutter needed.
Run this in your project’s root directory:
phpkg init
phpkg.config.json
: Configures your namespace mappings and settings.phpkg.config-lock.json
: Tracks your added packages’ versions and metadata.Packages/
directory: Stores source code for packages you install.Want a custom packages directory? Use:
phpkg init --packages-directory=vendor
Packages/
to vendor/
(or any name you pick).After running init
, tweak phpkg.config.json
to map your code (e.g., App
→ src/
). Example:
{
"map": {"App": "src"},
"entry-points": ["public/index.php"],
"packages": []
}
Then, add packages with phpkg add
and build with phpkg build
. See Customization for details.
One command, and you’re ready to autoload your way to cleaner PHP code.
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.