Let phpkg Handle the Heavy Lifting
Writing PHP often means wrestling with require
, include
, require_once
, or include_once
statements to load your files. It’s tedious, error-prone, and a nightmare when file locations change. The phpkg build
command eliminates this hassle by automatically resolving and injecting dependencies based on your namespace usage—whether they’re classes, functions, or constants from your project or external packages. Focus on coding; phpkg
handles the rest.
The build
command creates a ready-to-run copy of your project tailored to a specific environment.
For coding and testing:
phpkg build
builds/development/
.phpkg.config.json
.For deployment:
phpkg build production
builds/production/
. Note Customize your build with
phpkg.config.json
. Check the Customization Documentation for details.
The build
command scans your code for namespace usage—classes, functions, and constants—and intelligently adds the necessary require_once
statements. It also sets up autoloading in your entry points (e.g., public/index.php
) so PHP knows where to find your classes. Whether you’re using local files or external packages, phpkg
resolves everything based on your configuration.
Suppose your phpkg.config.json
maps "Application": "src"
and sets public/index.php
as the entry point. Here’s a file at src/ClassBar.php
:
<?php
namespace Application;
use Application\SubDomain\ClassFoo;
use Exception;
use function Application\Str\between;
use const Application\Constants\CONSTANT_A;
class ClassBar extends ClassFoo {
// Your code
}
After running phpkg build
, the output becomes:
<?php
namespace Application;
require_once '/var/www/src/Constants.php'; // For CONSTANT_A
require_once '/var/www/src/Str.php'; // For between()
use Application\SubDomain\ClassFoo;
use Exception;
use function Application\Str\between;
use const Application\Constants\CONSTANT_A;
class ClassBar extends ClassFoo {
// Your code
}
require_once
statements are added for the function between()
and constant CONSTANT_A
. ClassFoo
is configured in public/index.php
.Now, consider a more intricate scenario at src/SubDomain/ClassBar.php
:
<?php
namespace Application\SubDomain;
use Application\SubDomain\ClassFoo;
use Application\AnotherNamespace\ClassBaz as Baz;
use function Application\SampleFile\anImportantFunction;
use function Application\HelperNamespace\helper1 as anotherFunction;
use const Application\Constants\CONSTANT;
use const Application\OtherConstants\RENAME as AnotherConstant;
use PackageFoo\ClassInFoo as AnotherFile, PackageBar\SubDirectory\ClassInBar;
use PackageBaz\SubDirectory\{ClassInBaz, AnotherClassInBaz as Another};
use function PackageFoo\SubDirectory\Helper\{helper1 as anotherFunction, helper2};
use const PackageBar\SubDirectory\Constants\{CONSTANT, RENAME as AnotherConstant};
class ClassBar extends ClassFoo {
// Your code
}
After phpkg build
, it transforms into:
<?php
namespace Application\SubDomain;
require_once '/var/www/Packages/owner-foo/package-foo/src/SubDirectory/Constants.php';
require_once '/var/www/src/Constants.php';
require_once '/var/www/src/OtherConstants.php';
require_once '/var/www/Packages/owner-foo/package-foo/src/SubDirectory/Helper.php';
require_once '/var/www/src/SampleFile.php';
require_once '/var/www/src/Helper.php';
use Application\SubDomain\ClassFoo;
use Application\AnotherNamespace\ClassBaz as Baz;
use function Application\SampleFile\anImportantFunction;
use function Application\HelperNamespace\helper1 as anotherFunction;
use const Application\Constants\CONSTANT;
use const Application\OtherConstants\RENAME as AnotherConstant;
use PackageFoo\ClassInFoo as AnotherFile, PackageBar\SubDirectory\ClassInBar;
use PackageBaz\SubDirectory\{ClassInBaz, AnotherClassInBaz as Another};
use function PackageFoo\SubDirectory\Helper\{helper1 as anotherFunction, helper2};
use const PackageBar\SubDirectory\Constants\{CONSTANT, RENAME as AnotherConstant};
class ClassBar extends ClassFoo {
// Your code
}
require_once
statements resolve all used functions and constants, including those from external packages. public/index.php
.phpkg
resolves them automatically. phpkg
adjusts on the next build. With phpkg
, you write code—nothing else. It’s a superpower for productivity.
phpkg watch
to rebuild automatically on changes. phpkg build production
for a lean, optimized output. map
, excludes
, and more in phpkg.config.json
—see Customization. phpkg.config.json
.Ready to simplify your PHP projects? Start with Getting Started or explore the Watch Command for live development.
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.