Files
Yuriy Belenko da9f2f7c9b [php-slim4] Move config to a separate file (#6971)
* Move config into separated file

* Restrict access from web to config folder

* Exclude config folder from code base

* Update documentation

* Refresh samples

* Fix misplaced pathes
2020-08-29 00:27:03 +08:00

25 lines
710 B
Plaintext

# ref: https://github.com/github/gitignore/blob/master/Composer.gitignore
composer.phar
/vendor/
# Commit your application's lock file https://getcomposer.org/doc/01-basic-usage.md#commit-your-composer-lock-file-to-version-control
# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file
# composer.lock
# phplint tool creates cache file which is not necessary in a codebase
/.phplint-cache
# Do not commit local PHPUnit config
/phpunit.xml
/.phpunit.result.cache
# Do not commit local PHP_CodeSniffer config
/phpcs.xml
# Application config may contain sensitive data
/config/**/*.*
!/config/.htaccess
!/config/dev/example.inc.php
!/config/prod/example.inc.php