* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Deployer; require_once __DIR__ . '/common.php'; /** * Main task */ task('deploy', [ 'deploy:prepare', 'deploy:lock', 'deploy:release', 'deploy:update_code', 'deploy:symlink', 'deploy:unlock', 'cleanup', ])->desc('Deploy your project'); after('deploy', 'success');