From: Eddie Abou-Jaoude Date: Thu, 31 Jul 2014 06:42:20 +0000 (+0100) Subject: Updated Zend Framework gitignore as per docs X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=refs%2Fpull%2F1158%2Fhead;p=gitignore.git 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 --- 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