vasek-purchart/phing-symfony-command-task
最新稳定版本:3.0
Composer 安装命令:
composer require vasek-purchart/phing-symfony-command-task
包简介
This Phing task allows you to call commands from a Symfony Console Application comfortably.
README 文档
README
This Phing task allows you to call commands from a Symfony Console Application comfortably.
There is a built in SymfonyConsoleTask in Phing, but with this custom task you can:
- see the output as soon as it is ready (displaying progress bars)
- configure default Symfony Application Console location
- configure the executable with which the Console is run (environments on Windows usually require running the console trough PHP binary, not executing directly), again with a configurable default value
- escaping argument values and paths as in the
ExecTask
Usage
To call the commands in the simplest possible way like this:
<symfony-cmd cmd="test:test"/>
you have to configure the default values:
<property name="symfony-command.default.app" value="path/to/console"/> <property name="symfony-command.default.executable" value="php"/>
Of course you can set these properties in any other regular way.
If you do not want to use the defaults, or you want to override them you can always specify both or one of them:
<symfony-cmd executable="php-cgi" app="path/to/another/console" cmd="test:test"/>
If you want to pass any additional parameters, you can use <arg> elements to do so (as in ExecTask):
<symfony-cmd cmd="test:test"> <arg value="--strict"/> <arg path="path/to/tests"/> </symfony-cmd>
Installation
- Install package
vasek-purchart/phing-symfony-command-taskwith Composer:
composer require vasek-purchart/phing-symfony-command-task
- Register this task under a name of your choosing.
There are several ways how to register a task, see the TaskDefTask documentation. The recommended way is putting this in your build.xml:
<taskdef name="symfony-cmd" classname="VasekPurchart\Phing\SymfonyCommand\SymfonyCommandTask"/>
You can pick any other name for the command if you would like to.
统计信息
- 总下载量: 60.63k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 5
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2014-04-26