samsonphp / deploy
SamsonPHP 部署系统
1.0.0
2015-02-04 13:45 UTC
Requires
- samsonos/php_core: 1.*
Requires (Dev)
- phpunit/phpunit: 4.*
This package is not auto-updated.
Last update: 2024-09-14 16:34:38 UTC
README
SamsonPHP 服务,用于自动将项目部署到特定配置的环境
##配置
这通过以下方式完成:SamsonPHP 配置系统
所有可用的配置字段包括:
class DeployConfig extends \samson\core\Config { /** @var array Collection of path names to be ignored from deployment */ public $ignorePath = array('cms'); /** Path to site document root on local server */ public $sourceroot = ''; /** FTP host */ public $host = ''; /** Path to site document root on remote server */ public $wwwroot = ''; /** FTP username */ public $username= ''; /** FTP password */ public $password= ''; }