mirror of
https://github.com/deployphp/deployer.git
synced 2025-02-23 16:54:08 +01:00
25 lines
534 B
PHP
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');
|