2017 © Pedro Peláez
 

library stripper-clip

A PHP Task Runner Tool

image

ink/stripper-clip

A PHP Task Runner Tool

  • Monday, February 24, 2014
  • by MaxVandervelde
  • Repository
  • 1 Watchers
  • 2 Stars
  • 9 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

StripperClip

StripperClip is a functional build scripting tool for PHP projects., (*1)

This project is still in development and does not have a stable release., (*2)

Installation

Soon., (*3)

Configuration

The build file is configured in your project's build.clip.php file., (*4)

Example:, (*5)

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

The Versions