ink/stripper-clip

此包已被弃用且不再维护。没有建议的替代包。

PHP 任务运行器工具

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 是一个用于 PHP 项目的功能型构建脚本工具。

此项目仍在开发中,尚无稳定版本发布。

安装

即将推出。

配置

构建文件配置在您的项目的 build.clip.php 文件中。

示例

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