| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- # Dependencies
- /vendor/
- composer.lock
- composer.phar
- # IDE
- .idea/
- .vscode/
- *.swp
- *.swo
- .project
- .buildpath
- .settings/
- *.sublime-*
- # Testing
- .phpunit.cache/
- .phpunit.result.cache
- /coverage-html/
- coverage.txt
- coverage.xml
- coverage.clover
- phpunit.xml.local
- .phpunit/
- # Logs
- *.log
- /logs/
- nohup.out
- # OS
- .DS_Store
- Thumbs.db
- # Environment
- .env
- .env.local
- .env.*.local
- .env.testing
- # Test configuration with real credentials
- tests/config/credentials.php
- tests/config/real_config.php
- # Build artifacts
- /build/
- /dist/
- # Cache directories
- .cache/
- tmp/
- temp/
- # PHP development tools
- .phpstan.cache
- .php_cs.cache
- .php-cs-fixer.cache
- .psalm/
|