microphork / package-installer
The package installer for the microphork framework
Package info
github.com/phork/microphork-installer
Type:composer-plugin
pkg:composer/microphork/package-installer
Requires
- composer-plugin-api: ^1.0
Requires (Dev)
None
Suggests
None
Provides
None
Conflicts
None
Replaces
None
This package is not auto-updated.
Last update: 2021-12-25 01:11:21 UTC
README
This is a package installer for the microphork framework. It makes sure that all packages are installed in vendor/microphork/packages.
Usage
Each package must have its own composer.json file similar to the example below. Note that the type is microphork-package and that this installer is required.
{
"name": "microphork/package-auth",
"description": "An authentication package for the microphork framework",
"type": "microphork-package",
"require": {
"microphork/package-installer": "*"
},
"autoload": {
"psr-4": {
"Phork\\Pkg\\Auth\\": "classes"
}
}
}
Credits
Built by Elenor at Phork Labs.
License
Licensed under The MIT License http://www.opensource.org/licenses/mit-license.php