samsonphp / deploy
SamsonPHP deployment system
Installs: 3 886
Dependents: 3
Suggesters: 0
Security: 0
Stars: 1
Watchers: 3
Forks: 4
Open Issues: 3
Requires
- samsonos/php_core: 1.*
Requires (Dev)
- phpunit/phpunit: 4.*
This package is not auto-updated.
Last update: 2024-11-09 17:24:51 UTC
README
SamsonPHP service for automatic project deployment to specific configured environment
##Configuration
This is done using SamsonPHP configuration system
All available configuration fields are:
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= ''; }