50 lines
689 B
Plaintext
50 lines
689 B
Plaintext
# Git files
|
|
.git
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# IDE files
|
|
.idea
|
|
.vscode
|
|
*.swp
|
|
*.swo
|
|
|
|
# Documentation
|
|
README.md
|
|
*.MD
|
|
HELPER.MD
|
|
NOTIFICATION.MD
|
|
|
|
# Test files
|
|
tests
|
|
phpunit.xml.dist
|
|
|
|
# CI/CD
|
|
.github
|
|
.gitlab-ci.yml
|
|
|
|
# Platform.sh
|
|
.platform
|
|
.platform.app.yaml
|
|
|
|
# Docker files (don't copy Docker files into the image)
|
|
Dockerfile
|
|
docker-compose*.yml
|
|
compose*.yaml
|
|
.dockerignore
|
|
|
|
# Environment files (will be provided at runtime)
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Development dependencies
|
|
.php-cs-fixer.cache
|
|
|
|
# Cache and logs (will be created at runtime)
|
|
var/cache/*
|
|
var/log/*
|
|
var/sessions/*
|
|
|
|
# Vendor (will be installed during build)
|
|
# vendor is installed during the build process, so we don't ignore it
|