madalynn/plum
最新稳定版本:v1.2
Composer 安装命令:
composer require madalynn/plum
包简介
An object oriented deployer library
README 文档
README
An object oriented deployer library
Installation and configuration
Plum does not provide and autoloader but follow the PSR-0 convention.
$plum = new \Plum\Plum();
// Add global options for all the servers
$plum->setOptions(array(
'dry_run' => true,
'excludeFile' => __DIR__.'/exclude.txt'
));
// Register the rsync deployer
$plum->registerDeployer(new \Plum\Deployer\RsyncDeployer());
// Add your server
$plum->addServer('server_name', new \Plum\Server\Server('host', 'username', '/path/to/my/website'));
// Let's go!
$plum->deploy('bender', 'rsync');
统计信息
- 总下载量: 10.22k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 86
- 点击次数: 1
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2011-12-22