deployer/recipe/symfony3.php
Anton Medvedev 1a5e68c3e2 Merge branch 'robfrawley-master' into 4.x
# Conflicts:
#	recipe/symfony.php
2016-08-04 22:04:42 +03:00

25 lines
534 B
PHP

<?php
/* (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.
*/
namespace Deployer;
require_once __DIR__ . '/symfony.php';
/**
* Symfony 3 Configuration
*/
// Symfony shared dirs
set('shared_dirs', ['var/logs', 'var/sessions']);
// Symfony writable dirs
set('writable_dirs', ['var/cache', 'var/logs', 'var/sessions']);
// Symfony executable and variable directories
set('bin_dir', 'bin');
set('var_dir', 'var');