| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- # Define the line ending behavior of the different file extensions
- # Set default behavior, in case users don't have core.autocrlf set.
- * text text=auto eol=lf
- .php diff=php
- # Declare files that will always have CRLF line endings on checkout.
- *.bat eol=crlf
- # Declare files that will always have LF line endings on checkout.
- *.pem eol=lf
- # Denote all files that are truly binary and should not be modified.
- *.png binary
- *.jpg binary
- *.gif binary
- *.ico binary
- *.mo binary
- *.pdf binary
- *.phar binary
- *.woff binary
- *.woff2 binary
- *.ttf binary
- *.otf binary
- *.eot binary
- # Remove files for archives generated using `git archive`
- .github export-ignore
- .phive export-ignore
- contrib export-ignore
- tests/test_app export-ignore
- tests/TestCase export-ignore
- .editorconfig export-ignore
- .gitattributes export-ignore
- .gitignore export-ignore
- .mailmap export-ignore
- .stickler.yml export-ignore
- Makefile export-ignore
- phpcs.xml export-ignore
- phpstan.neon.dist export-ignore
- phpstan-baseline.neon export-ignore
- phpunit.xml.dist export-ignore
- psalm.xml export-ignore
- psalm-baseline.xml export-ignore
- # Split package files
- src/Validation/.gitattributes export-ignore
- src/Validation/phpstan.neon.dist export-ignore
- src/Validation/tests/ export-ignore
|