-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
49 lines (39 loc) · 1.15 KB
/
Copy path.gitattributes
File metadata and controls
49 lines (39 loc) · 1.15 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
# Normalize line endings for all text files to LF
* text=auto eol=lf
# Override for binary files
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
# Development and testing files
/tests export-ignore
/benchmarks export-ignore
/examples export-ignore
/tasks export-ignore
/.claude export-ignore
# Build and deployment
/build export-ignore
/vendor export-ignore
# CI/CD and GitHub
/.github export-ignore
# IDE and editor configs
/.idea export-ignore
.editorconfig export-ignore
# Development environment
.env export-ignore
.env.example export-ignore
Dockerfile export-ignore
docker-compose.yml export-ignore
# Development documentation
DEVELOPMENT.md export-ignore
README.md export-ignore
CHANGELOG.md export-ignore
# Code quality and testing configs
phpstan.neon.dist export-ignore
phpunit.xml.dist export-ignore
rector.php export-ignore
.php_cs export-ignore
.php-cs-fixer.php export-ignore
# Git files
.gitattributes export-ignore
.gitignore export-ignore