-
Notifications
You must be signed in to change notification settings - Fork 12
/
.gitattributes
59 lines (55 loc) · 1.88 KB
/
.gitattributes
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
49
50
51
52
53
54
55
56
57
58
59
# Exclude unnecessary files from Composer and Git exports
/docs/ export-ignore
#/evals/ export-ignore # include this one with distribution
#/examples/ export-ignore # include this one with distribution
/.github/ export-ignore
/notes/ export-ignore
/tests/ export-ignore
/.gitignore export-ignore
/.gitattributes export-ignore
/.cursorignore export-ignore
/composer.lock export-ignore
/.replit export-ignore
/Doxyfile export-ignore
/mkdocs.yml.bak export-ignore
/phpunit.xml export-ignore
/phpstan.neon.dist export-ignore
/phpunit.xml.dist export-ignore
/psalm.xml export-ignore
/mkdocs.yml export-ignore
/phpstan.neon export-ignore
*.md export-ignore
*.mdx export-ignore
# Line ending normalization
# Ensure PHP, JS, and text files have consistent line endings
*.php text eol=lf
*.js text eol=lf
*.css text eol=lf
*.html text eol=lf
*.txt text eol=lf
*.md text eol=lf
*.mdx text eol=lf
*.xml text eol=lf
*.yml text eol=lf
*.yaml text eol=lf
*.sh text eol=lf
*.bat text eol=lf
# Treat binary files as binary
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.pdf binary
*.svg binary
# Linguist overrides (optional for GitHub)
*.md linguist-documentation
*.json linguist-vendored
/vendor/ linguist-vendored
# Ignore logs and temp files in exports (optional)
*.log export-ignore
/temp/ export-ignore
/tmp/ export-ignore
/cache/ export-ignore
*.bak export-ignore
*.swp export-ignore