Skip to content

Commit

Permalink
Merge cbe2c37 into 28dd739
Browse files Browse the repository at this point in the history
  • Loading branch information
superrosko committed Oct 6, 2020
2 parents 28dd739 + cbe2c37 commit dd5a63b
Show file tree
Hide file tree
Showing 4 changed files with 594 additions and 1 deletion.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ install:

script:
- if [[ $TEST_COVERAGE == 'true' ]]; then composer test-coverage ; else composer test ; fi
- if [[ $TEST_COVERAGE == 'true' ]]; then composer static-analysis ; fi
- if [[ $CS_CHECK == 'true' ]]; then composer cs-check ; fi

after_script:
Expand Down
5 changes: 4 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@
"require-dev": {
"laminas/laminas-coding-standard": "~1.0.0",
"laminas/laminas-stdlib": "^2.7.7 || ^3.0.1",
"phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.5"
"phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.5",
"psalm/plugin-phpunit": "^0.12.2",
"vimeo/psalm": "^3.16"
},
"autoload": {
"psr-4": {
Expand All @@ -60,6 +62,7 @@
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"static-analysis": "psalm --shepherd --stats",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
},
Expand Down

0 comments on commit dd5a63b

Please sign in to comment.