ftven/cli-common
Composer 安装命令:
composer require ftven/cli-common
包简介
Common CLI helpers classes
README 文档
README
Usage
Add the dependency in your composer.json :
...
"require": {
...
"ftven/cli-common": "1.*"
}
Then update your dependency :
$ ./composer.phar update ftven/cli-common
Then you can use it directly in your scripts :
<?php
// ...
require_once '/path/to/vendor/autoload.php';
$cli = new Ftven\Build\Cli\Application\CliApplication('mytool', '1.0.0');
$cli->addExtension(new MyNamespace\MyExtension());
$cli->run();
CliApplication is a full Symfony Console Application, so you can use all available methods on it to add commands, etc... As a best practices, we recommand not adding directly commands on the CliApplication, rather create an extension. For further information on creating extension, read CoreExtension class, or search for php-cli-xxx-extension on our GitHub.
Enjoy !
FTVEN Build Team.
统计信息
- 总下载量: 128
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 2
- 依赖项目数: 1
- 推荐数: 1
其他信息
- 授权协议: MIT
- 更新时间: 2014-07-03