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

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');
    }
);