From d91e30aca91a25a3bcf1e05d8a66485e01e7a8ad Mon Sep 17 00:00:00 2001 From: Eddie Abou-Jaoude Date: Thu, 31 Jul 2014 07:42:20 +0100 Subject: [PATCH] Updated Zend Framework gitignore as per docs ``` data/: This directory provides a place to store application data that is volatile and possibly temporary. The disturbance of data in this directory might cause the application to fail. Also, the information in this directory may or may not be committed to a subversion repository. Examples of things in this directory are session files, cache files, sqlite databases, logs and indexes. ``` As per docs... http://framework.zend.com/manual/2.3/en/ref/project.structure.html --- ZendFramework.gitignore | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/ZendFramework.gitignore b/ZendFramework.gitignore index cd248f53..005ba82b 100644 --- a/ZendFramework.gitignore +++ b/ZendFramework.gitignore @@ -3,18 +3,18 @@ composer.phar vendor/ # Local configs -config/autoload/*local.php +config/autoload/*.local.php # Binary gettext files *.po # Data -log/ -logs/ -cache/ +data/logs/ +data/cache/ +data/sessions/ +data/tmp/ temp/ -tmp/ -# ZF1 +# Legacy ZF1 demos/ extras/documentation