Skip to content
This repository was archived by the owner on Jan 29, 2020. It is now read-only.
Merged
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
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,6 @@
/docs/ export-ignore
/mkdocs.yml export-ignore
/phpcs.xml export-ignore
/phpstan.neon.dist export-ignore
/phpunit.xml.dist export-ignore
/test/ export-ignore
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
/clover.xml
/coveralls-upload.json
/docs/html/
/phpstan.neon
/phpunit.xml
/vendor/
/zf-mkdoc-theme.tgz
Expand Down
2 changes: 2 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
},
"require-dev": {
"http-interop/http-middleware": "^0.4.1",
"phpstan/phpstan": "~0.11.1",
"phpunit/phpunit": "^8.0",
"webimpress/coding-standard": "dev-master",
"zendframework/zend-coding-standard": "2.0.0-alpha.3",
Expand Down Expand Up @@ -77,6 +78,7 @@
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"phpstan": "phpstan analyse",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
}
Expand Down
Loading