Customization

Shape Your phpkg Project

The phpkg init command creates a phpkg.config.json file—your key to tailoring phpkg for your project. From mapping namespaces to autoloading functions or setting entry points, this file lets you control how phpkg builds and runs your code. Here’s how to make it yours.


What’s in the Config?

Run phpkg init, and you’ll get a phpkg.config.json like this:

{
    "map": [],
    "autoloads": [],
    "excludes": [],
    "entry-points": [],
    "executables": [],
    "import-file": "phpkg.imports.php",
    "packages-directory": "Packages",
    "packages": []
}

Let’s break down each part.

Map

Map namespaces to directories—like App to src/—so phpkg knows where your code lives. Example:

{
    "map": {
        "App": "src",
        "Tests": "tests"
    }
}
  • Add as many mappings as you need—phpkg resolves them for you.
  • Follow PSR-4 naming for classes and functions.
Classes:
// src/User.php
namespace App;
class User {
    // Your code
}
Functions:
// src/Utils.php
namespace App\Utils;
function log($msg) { echo $msg; }

Why it rocks: phpkg autoloads both, letting you mix OOP and functional code effortlessly.

Autoloads

List files to load before anything else—perfect for helpers or constants. Example:

{
    "autoloads": ["src/helpers.php"]
}
  • Add multiple files as needed.
  • Use this for utilities you want globally available, like:
      // src/helpers.php
      function debug($var) { var_dump($var); }

Excludes

Skip files or dirs during builds—like node_modules or dev scripts. Example:

{
    "excludes": ["node_modules", "build.sh"]
}
  • Paths are relative to your project root.
  • Keeps your builds lean by ignoring runtime-irrelevant stuff.

Entry Points

Define where your app starts—phpkg adds autoloading magic here. Example:

{
    "entry-points": ["public/index.php", "cli/run.php"]
}
  • List all entry files (e.g., web or CLI).
  • phpkg injects imports so App\Utils\log() just works.

Executables

Turn package scripts into root-level commands via symlinks. Example:

{
    "executables": {
        "rocket": "Packages/rocket/launch.php"
    }
}
  • Run php rocket to execute launch.php.
  • Add more: "status": "Packages/rocket/status.php".
  • Paths are relative to root; scripts inherit their package’s autoloads.

Import File

Set where phpkg writes import statements (default: phpkg.imports.php). Change it with:

{
    "import-file": "vendor/autoload.php"
}
  • Matches your project’s style—e.g., mimic Composer if you like.

Packages Directory

Choose where packages live (default: Packages). Customize it:

{
    "packages-directory": "vendor"
}
  • phpkg add uses this dir; builds pull from here too.
  • Add it to .gitignore to keep Git clean.

    Note: If it doesn’t exist, phpkg creates it.

Packages

Tracks installed packages—phpkg fills this automatically with add, update, or remove. Example:

{
    "packages": {
        "https://github.com/php-repos/test-runner.git": "1.0.0",
        "https://github.com/php-repos/datatype.git": "2.5.0"
    }
}

Lists Git URLs and versions—no manual edits needed.


Get Started

Edit phpkg.config.json after phpkg init, then use phpkg build to see it in action. Need more? Check Init Command or dive into other commands like phpkg add.

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.