62 lines
708 B
Text
62 lines
708 B
Text
|
|
# Git
|
||
|
|
.git
|
||
|
|
.gitignore
|
||
|
|
.gitattributes
|
||
|
|
|
||
|
|
# Documentation
|
||
|
|
*.md
|
||
|
|
LICENSE
|
||
|
|
docs/
|
||
|
|
|
||
|
|
# Environment files
|
||
|
|
.env
|
||
|
|
.env.*
|
||
|
|
!.env.example
|
||
|
|
|
||
|
|
# Dependencies (will be installed fresh)
|
||
|
|
vendor/
|
||
|
|
node_modules/
|
||
|
|
|
||
|
|
# Storage (will be mounted as volumes)
|
||
|
|
storage/app/*
|
||
|
|
storage/framework/cache/*
|
||
|
|
storage/framework/sessions/*
|
||
|
|
storage/framework/views/*
|
||
|
|
storage/logs/*
|
||
|
|
bootstrap/cache/*
|
||
|
|
|
||
|
|
# Testing
|
||
|
|
phpunit.xml
|
||
|
|
.phpunit.result.cache
|
||
|
|
tests/
|
||
|
|
coverage/
|
||
|
|
|
||
|
|
# IDE
|
||
|
|
.idea/
|
||
|
|
.vscode/
|
||
|
|
*.swp
|
||
|
|
*.swo
|
||
|
|
*~
|
||
|
|
|
||
|
|
# OS
|
||
|
|
.DS_Store
|
||
|
|
Thumbs.db
|
||
|
|
|
||
|
|
# Docker
|
||
|
|
Dockerfile*
|
||
|
|
docker-compose*.yml
|
||
|
|
.dockerignore
|
||
|
|
|
||
|
|
# Frontend old
|
||
|
|
frontend-old/
|
||
|
|
|
||
|
|
# Build artifacts
|
||
|
|
public/build/
|
||
|
|
public/hot
|
||
|
|
public/mix-manifest.json
|
||
|
|
|
||
|
|
# Development
|
||
|
|
.php_cs.cache
|
||
|
|
.php-cs-fixer.cache
|
||
|
|
phpstan.neon
|
||
|
|
.editorconfig
|