deployer/recipe/composer.php

30 lines
571 B
PHP
Raw Normal View History

<?php
2016-01-11 12:51:59 +07:00
/* (c) Anton Medvedev <anton@medv.io>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
2016-01-11 14:00:45 +07:00
namespace Deployer;
require_once __DIR__ . '/common.php';
/**
* Main task
*/
task('deploy', [
2017-08-12 12:01:27 +03:00
'deploy:info',
'deploy:prepare',
2016-11-05 12:56:53 +07:00
'deploy:lock',
2015-02-25 12:55:56 +03:00
'deploy:release',
'deploy:update_code',
'deploy:shared',
'deploy:vendors',
'deploy:writable',
'deploy:symlink',
2016-11-05 12:56:53 +07:00
'deploy:unlock',
'cleanup',
])->desc('Deploy your project');
2015-02-25 12:55:56 +03:00
after('deploy', 'success');