budry/phar-creator

dev-master 2014-01-04 17:42 UTC

This package is auto-updated.

Last update: 2024-05-04 18:07:30 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