1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- # ---> CVS
- /CVS/*
- **/CVS/*
- .cvsignore
- */.cvsignore
-
- # ---> C++
- # Prerequisites
- *.d
-
- # Compiled Object files
- *.slo
- *.lo
- *.o
- *.obj
-
- # Precompiled Headers
- *.gch
- *.pch
-
- # Compiled Dynamic libraries
- *.so
- *.dylib
- *.dll
-
- # Fortran module files
- *.mod
- *.smod
-
- # Compiled Static libraries
- *.lai
- *.la
- *.a
- *.lib
-
- # Executables
- *.exe
- *.out
- *.app
-
- # ---> CakePHP
- # CakePHP 3
-
- /vendor/*
- /config/app.php
-
- /tmp/cache/models/*
- !/tmp/cache/models/empty
- /tmp/cache/persistent/*
- !/tmp/cache/persistent/empty
- /tmp/cache/views/*
- !/tmp/cache/views/empty
- /tmp/sessions/*
- !/tmp/sessions/empty
- /tmp/tests/*
- !/tmp/tests/empty
-
- /logs/*
- !/logs/empty
-
- # CakePHP 2
-
- /app/tmp/*
- /app/Config/core.php
- /app/Config/database.php
- /vendors/*
-
|