Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,13 +1,21 @@
# Set the default behavior, in case people don't have core.autocrlf set.
* text eol=lf

# Ignoring files for distribution archieves
.github/ export-ignore
etc/ export-ignore
etc/ci/ export-ignore
etc/qa/ export-ignore
examples/ export-ignore
tests/ export-ignore
var/ export-ignore
.devcontainer.json export-ignore
.editorconfig export-ignore
.gitattributes export-ignore
.gitignore export-ignore
CONTRIBUTING.md export-ignore
infection.json.dist export-ignore
composer.lock export-ignore
Makefile export-ignore
README.md export-ignore

# Diffing
*.php diff=php
112 changes: 92 additions & 20 deletions Makefile

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
},
"require-dev": {
"wyrihaximus/async-test-utilities": "^10.4.0",
"wyrihaximus/makefiles": "^0.7.10"
"wyrihaximus/makefiles": "^0.7.14"
},
"autoload": {
"psr-4": {
Expand Down
16 changes: 8 additions & 8 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion etc/qa/infection.json5
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,4 @@
]
}
}
}
}
2 changes: 1 addition & 1 deletion etc/qa/phpcs.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<arg name="basepath" value="../../" />
<arg name="extensions" value="php" /> <!-- which extensions to look for -->
<arg name="colors" />
<arg name="cache" value=".phpcs.cache" /> <!-- cache the results and don't commit them -->
<arg name="cache" value="../../var/.phpcs.cache" /> <!-- cache the results and don't commit them -->
<arg value="np" /> <!-- n = ignore warnings, p = show progress -->

<file>../../etc</file>
Expand Down
Loading