Init Command

Kickstart Your phpkg Project

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.


Usage

Run this in your project’s root directory:

phpkg init
  • What It Does:
    • Creates phpkg.config.json: Configures your namespace mappings and settings.
    • Creates phpkg.config-lock.json: Tracks your added packages’ versions and metadata.
    • Adds a Packages/ directory: Stores source code for packages you install.

Want a custom packages directory? Use:

phpkg init --packages-directory=vendor
  • Renames Packages/ to vendor/ (or any name you pick).

Next Steps

After running init, tweak phpkg.config.json to map your code (e.g., Appsrc/). 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.

Why This Matters?

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.