microphork / package-installer
This package is abandoned and no longer maintained.
No replacement package was suggested.
The package installer for the microphork framework
Package info
github.com/phork/microphork-installer
Type:composer-plugin
pkg:composer/microphork/package-installer
v1.1.0
2016-07-08 15:25 UTC
Requires
- composer-plugin-api: ^1.0
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