budry / phar-creator
dev-master
2014-01-04 17:42 UTC
Requires
- kappa/filesystem: 3.0.*
- tasker/tasker: 2.1.*
Requires (Dev)
- kappa/tester: 1.0.*
This package is auto-updated.
Last update: 2024-11-04 19:09:33 UTC
README
Task creating compress php files into once .phar file
Extension for Tasker
Installation
The best way to install budry/phar-creator is using Composer:
$ composer require budry/phar-creator:@dev
Before register task you must add path to directory with config file and next register task
$takser = new Tasker(); $takser->addConfig($rootPath . '/tasker.json') ->registerTask(new PharCreatorTask($rootPath), 'phar', 'phar'); $takser->run();
Into tasker config file add config section
{ "phar": { "./testProject.phar": { "minify" false, "source": "./TestProject", "main": "bootstrap.php" } } }
Section minify is not required if you skip this section files won't minificate