49 lines
601 B
Text
49 lines
601 B
Text
|
|
# Dependencies
|
||
|
|
node_modules/
|
||
|
|
vendor/
|
||
|
|
|
||
|
|
# Environment files
|
||
|
|
.env
|
||
|
|
.env.*
|
||
|
|
!.env.example
|
||
|
|
|
||
|
|
# Testing
|
||
|
|
tests/
|
||
|
|
.phpunit.result.cache
|
||
|
|
phpunit.xml
|
||
|
|
|
||
|
|
# Development files
|
||
|
|
.git/
|
||
|
|
.github/
|
||
|
|
.gitignore
|
||
|
|
.gitattributes
|
||
|
|
.editorconfig
|
||
|
|
.php-cs-fixer.php
|
||
|
|
.php-cs-fixer.cache
|
||
|
|
phpstan.neon
|
||
|
|
phpstan-baseline.neon
|
||
|
|
|
||
|
|
# IDE
|
||
|
|
.idea/
|
||
|
|
.vscode/
|
||
|
|
*.swp
|
||
|
|
*.swo
|
||
|
|
*~
|
||
|
|
|
||
|
|
# Storage and cache (will be generated in container)
|
||
|
|
storage/framework/cache/*
|
||
|
|
storage/framework/sessions/*
|
||
|
|
storage/framework/views/*
|
||
|
|
storage/logs/*
|
||
|
|
bootstrap/cache/*
|
||
|
|
|
||
|
|
# Documentation
|
||
|
|
README.md
|
||
|
|
CHANGELOG.md
|
||
|
|
LICENSE
|
||
|
|
|
||
|
|
# Docker files
|
||
|
|
Dockerfile*
|
||
|
|
docker-compose*.yml
|
||
|
|
.dockerignore
|