From a70928bbe7f006b1328ecb4ad32fef7d6aad15d6 Mon Sep 17 00:00:00 2001 From: Pierre du Plessis Date: Thu, 7 Jan 2016 12:28:15 +0200 Subject: [PATCH] Add Symfony3 recipe --- recipe/symfony3.php | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 recipe/symfony3.php diff --git a/recipe/symfony3.php b/recipe/symfony3.php new file mode 100644 index 00000000..fd8ce4c4 --- /dev/null +++ b/recipe/symfony3.php @@ -0,0 +1,21 @@ + + * + * 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']); + +// Symfony writable dirs +set('writable_dirs', ['var/cache', 'var/logs']); + +set('bin_dir', 'bin'); +set('var_dir', 'var');