mirror of
https://github.com/github/gitignore
synced 2024-11-22 11:44:21 +01:00
d91e30aca9
``` 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
21 lines
217 B
Plaintext
21 lines
217 B
Plaintext
# Composer files
|
|
composer.phar
|
|
vendor/
|
|
|
|
# Local configs
|
|
config/autoload/*.local.php
|
|
|
|
# Binary gettext files
|
|
*.po
|
|
|
|
# Data
|
|
data/logs/
|
|
data/cache/
|
|
data/sessions/
|
|
data/tmp/
|
|
temp/
|
|
|
|
# Legacy ZF1
|
|
demos/
|
|
extras/documentation
|