File tree Expand file tree Collapse file tree 2 files changed +36
-0
lines changed
Expand file tree Collapse file tree 2 files changed +36
-0
lines changed Original file line number Diff line number Diff line change 1+ # Set the default behavior, in case people don't have core.autocrlf set.
2+ * text =auto
3+ * eol =lf
4+
5+ # Denote all files that are truly binary and should not be modified.
6+ * .png binary
7+ * .jpg binary
8+
9+ # Ignore tests from export
10+ /tests export-ignore
11+ phpunit.xml.dist export-ignore
12+
13+ # Ignore composer dependencies from export
14+ /vendor export-ignore
15+ /composer.lock
16+
17+ # Ignore git configurations from export
18+ .gitattributes export-ignore
19+ .gitignore export-ignore
20+
21+ # Ignore CI configurations from export
22+ .scrutinizer.yml export-ignore
23+ .travis.yml export-ignore
24+ .codeclimate.yml export-ignore
25+ .styleci.yml export-ignore
Original file line number Diff line number Diff line change 1+ # Setting up GIt to ignore the indexing of these files and directories.
2+ # Keep this file clean, add only files and folders directly pertinent to the project.
3+ # DO NOT add the local environment files, like OS temp files or IDE files.
4+ # For local environment files use global ignore.
5+
6+ # Composer
7+ vendor /
8+ composer.lock
9+
10+ # PHPUnit
11+ phpunit.xml
You can’t perform that action at this time.
0 commit comments