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
|
# Define the line ending behavior of the different file extensions
# Set default behaviour, in case users don't have core.autocrlf set.
* text eol=lf
# Explicitly declare text files we want to always be normalized and converted
# to native line endings on checkout.
*.php text
*.txt text
*.xml text
# Declare files that will always have CRLF line endings on checkout.
*.bat eol=crlf
# Denote all files that are truly binary and should not be modified.
*.png binary
*.jpg binary
*.gif binary
*.ico binary
/src/test export-ignore
/src/site export-ignore
/src/phar export-ignore
/vendor/squizlabs export-ignore
.gitattributes export-ignore
.github export-ignore
.gitignore export-ignore
.gitmodules export-ignore
.travis.yml export-ignore
build.xml export-ignore
phpunit.xml.dist export-ignore
pdepend.xml.dist export-ignore
composer.lock export-ignore
.editorconfig export-ignore
appveyor.yml export-ignore
CNAME export-ignore
/bin/ export-ignore
|