dev-master
9999999-dev
MIT
The Requires
The Development Requires
task
Wallogit.com
2017 © Pedro PelĂĄez
Task creating compress php files into once .phar file, (*1)
Extension for Tasker, (*2)
The best way to install budry/phar-creator is using Composer:, (*3)
$ composer require budry/phar-creator:@dev
Before register task you must add path to directory with config file and next register task, (*4)
$takser = new Tasker();
$takser->addConfig($rootPath . '/tasker.json')
->registerTask(new PharCreatorTask($rootPath), 'phar', 'phar');
$takser->run();
Into tasker config file add config section, (*5)
{
"phar": {
"./testProject.phar": {
"minify" false,
"source": "./TestProject",
"main": "bootstrap.php"
}
}
}
Section minify is not required if you skip this section files won't minificate, (*6)
MIT
task