ink / stripper-clip
This package is abandoned and no longer maintained.
No replacement package was suggested.
A PHP Task Runner Tool
dev-master
2014-02-24 02:06 UTC
Requires
- php: >=5.4
- pear/archive_tar: 1.3.*
- symfony/config: >=2.3
- symfony/console: >=2.3
- symfony/dependency-injection: >=2.3
- symfony/filesystem: >=2.3
- symfony/finder: >=2.3
- symfony/yaml: >=2.3
This package is not auto-updated.
Last update: 2020-01-20 08:21:59 UTC
README
StripperClip is a functional build scripting tool for PHP projects.
This project is still in development and does not have a stable release.
Installation
Soon.
Configuration
The build file is configured in your project's build.clip.php
file.
Example:
<?php task('clean', [], function(){ remove('build'); remove('vendor'); }); task('prepare', [], function() { createDirectory('build'); createDirectory('vendor'); }); task( 'install', [dependsOn => ['prepare'], description => 'Installs the project'], function() { composer('install'); } );