deployer/recipe/composer.php

23 lines
448 B
PHP
Raw Normal View History

<?php
/* (c) Anton Medvedev <anton@elfet.ru>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
require_once __DIR__ . '/common.php';
/**
* Main task
*/
task('deploy', [
'deploy:prepare',
2015-02-25 12:55:56 +03:00
'deploy:release',
'deploy:update_code',
'deploy:vendors',
'deploy:symlink',
'cleanup',
])->desc('Deploy your project');
2015-02-25 12:55:56 +03:00
after('deploy', 'success');