codenamephp / build
This package is abandoned and no longer maintained.
No replacement package was suggested.
1.0.3
2016-11-12 15:49 UTC
Requires
Requires (Dev)
This package is auto-updated.
Last update: 2020-08-18 20:08:07 UTC
README
A build library that contains basic build tasks that will be used by the build interfaces
Installation
Easiest way is via composer:
"require": { "codenamephp/build": "*" }
Then add the \de\codenamephp\build\DefinitionProvider to the DI Container:
$containerBuilder = new \de\codenamephp\platform\di\ContainerBuilder(); $containerBuilder->addDefinitionsByProvider(new \de\codenamephp\build\DefinitionsProvider()); return $containerBuilder;
Usage
This packages is supposed to be a working base of tasks that will be wrapped in interface projects, e.g. to feed runtime parameters to the tasks and provider a common interface that is project specific to run the tasks in sequence.