Files
openapi-generator-original/samples/server/petstore/php-slim4/.gitignore
Yuriy Belenko 0e9d6b09be [php-slim4] Add monolog package as default logger (#12137)
* Add monolog to templates

* Remove default values from DI\get helper

It turned out \DI\get expects only single argument, current method call
doesn't throw any errors but it should be corrected anyway.

* Refresh samples
2022-04-16 16:20:05 +08:00

29 lines
755 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/default.inc.php
!/config/prod/default.inc.php
# Logs folder
/logs/**/*.*
!/logs/.htaccess