forked from Ashishkumbhar01/supabase-php
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitattributes
45 lines (41 loc) · 948 Bytes
/
.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
# Normalize text files (LF endings for consistency)
*.php text eol=lf
*.js text eol=lf
*.css text eol=lf
*.html text eol=lf
*.md text eol=lf
*.json text eol=lf
*.yml text eol=lf
*.xml text eol=lf
# Treat binary files properly
*.jpg binary
*.png binary
*.gif binary
*.ico binary
*.woff binary
*.woff2 binary
*.ttf binary
*.eot binary
*.mp4 binary
*.pdf binary
# Prevent diffing of lock files and minified files
composer.lock -diff
LICENSE -diff
# Exclude files from `git archive` (useful when packaging a release)
.env export-ignore
/tests/ export-ignore
.github export-ignore
.gitignore export-ignore
.gitattributes export-ignore
/vendor/ export-ignore
/example/ export-ignore
CODE_OF_CONDUCT.md export-ignore
CHANGELOG.md export-ignore
README.md export-ignore
index.php export-ignore
phpunit.xml export-ignore
composer.json export-ignore
composer.lock export-ignore
.editorconfig export-ignore
.env.example export-ignore
LICENSE export-ignore