Initial commit
This commit is contained in:
commit
7c501187d5
|
|
@ -0,0 +1,59 @@
|
||||||
|
# ---> 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/*
|
||||||
|
|
||||||
|
# ---> FuelPHP
|
||||||
|
# the composer package lock file and install directory
|
||||||
|
# Commit your application's lock file http://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file
|
||||||
|
# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file
|
||||||
|
# /composer.lock
|
||||||
|
/fuel/vendor
|
||||||
|
|
||||||
|
# the fuelphp document
|
||||||
|
/docs/
|
||||||
|
|
||||||
|
# you may install these packages with `oil package`.
|
||||||
|
# http://fuelphp.com/docs/packages/oil/package.html
|
||||||
|
# /fuel/packages/auth/
|
||||||
|
# /fuel/packages/email/
|
||||||
|
# /fuel/packages/oil/
|
||||||
|
# /fuel/packages/orm/
|
||||||
|
# /fuel/packages/parser/
|
||||||
|
|
||||||
|
# dynamically generated files
|
||||||
|
/fuel/app/logs/*/*/*
|
||||||
|
/fuel/app/cache/*/*
|
||||||
|
/fuel/app/config/crypt.php
|
||||||
|
|
||||||
|
# ---> ThinkPHP
|
||||||
|
# gitignore template for ThinkPHP v3.2.3
|
||||||
|
# website: http://www.thinkphp.cn/
|
||||||
|
|
||||||
|
# Logs and Cache files
|
||||||
|
/Application/Runtime/
|
||||||
|
|
||||||
|
# Common configure file
|
||||||
|
/Application/Common/Conf/config.php
|
||||||
|
|
@ -0,0 +1,6 @@
|
||||||
|
As a special exception, if you link this library with files
|
||||||
|
compiled with a GNU compiler to produce an executable, this
|
||||||
|
does not cause the resulting executable to be covered by
|
||||||
|
the GNU General Public License. This exception does not
|
||||||
|
however invalidate any other reasons why the executable
|
||||||
|
file might be covered by the GNU General Public License.
|
||||||
Loading…
Reference in New Issue