deployer/recipe/symfony3.php
Rob Frawley 2nd ec3fb29562 refactoring/cleanup of symfony-related recipes
fix double task

removed composer.lock from commit

fix for styleci

fix for styleci

fix for https://travis-ci.org/deployphp/deployer/builds/135430111

added option to allow composer update

renamed env to build_env

removed composer action logic

moved env to only symfony-recepes

removed allow update

cleanup comment
2016-06-10 04:01:59 -04:00

23 lines
513 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.
*/
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');