If your application or package currently relies on Composer, the phpkg migrate
command simplifies the shift to phpkg
. It scans your composer.json
, generates a phpkg.config.json
with the key details, and prepares your project to leverage phpkg
’s powerful autoloading—no tedious manual configuration required.
phpkg
-ready configuration.In the root directory of your package or application, run:
phpkg migrate
composer.json
file. phpkg.config.json
file with namespace mappings and package info. phpkg
’s build process.Next Step: Run phpkg build
to autoload your code and dependencies.
migrate
does the heavy lifting. After migration, you can tweak phpkg.config.json
as needed—see Customization for more.
Imagine your composer.json
looks like this:
{
"autoload": {
"psr-4": {
"MyApp\\": "src/"
}
},
"require": {
"vendor/package": "^2.0"
}
}
Running phpkg migrate
might produce a phpkg.config.json
like:
{
"map": {
"MyApp": "src"
},
"packages": {
"https://github.com/vendor/package.git": "^2.0"
}
}
Heads Up: Package URLs are placeholders—update them with real Git repository URLs.
Then, run phpkg build
to get your project up and running.
phpkg.config.json
post-migration to adjust settings or add entry points. phpkg add
to fetch packages from Git after migration. 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.