-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
48 lines (41 loc) · 1.16 KB
/
.gitattributes
File metadata and controls
48 lines (41 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# Auto detect text files and perform LF normalization
* text=auto
# Exclude development files from git archive (ZIP/Tar.gz exports)
/.github export-ignore
/tests export-ignore
/.idea export-ignore
/.vscode export-ignore
/.claude export-ignore
/build export-ignore
/coverage export-ignore
# Development configuration files
/.gitignore export-ignore
/.gitattributes export-ignore
/.editorconfig export-ignore
/.php-cs-fixer.php export-ignore
/phpunit.xml export-ignore
/phpunit.xml.dist export-ignore
/phpstan.neon export-ignore
/phpstan.neon.dist export-ignore
/phpcs.xml export-ignore
/phpcs.xml.dist export-ignore
# Documentation for developers (not end users)
/README.en.md export-ignore
/README.fr.md export-ignore
/CONTRIBUTING.md export-ignore
/CODE_OF_CONDUCT.md export-ignore
# Build scripts
/build.sh export-ignore
/Makefile export-ignore
# CI/CD files
/.gitlab-ci.yml export-ignore
/.travis.yml export-ignore
/azure-pipelines.yml export-ignore
# Package manager locks (will be regenerated)
/composer.lock export-ignore
/package-lock.json export-ignore
/yarn.lock export-ignore
# Temporary and cache files
*.log export-ignore
*.cache export-ignore
*.tmp export-ignore