Skip to content

Commit

Permalink
Merge e047ae2 into ba75d68
Browse files Browse the repository at this point in the history
  • Loading branch information
Dropelikeit committed Dec 3, 2019
2 parents ba75d68 + e047ae2 commit bdbdb52
Show file tree
Hide file tree
Showing 23 changed files with 1,606 additions and 126 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ matrix:
include:
- php: 7.1
- php: 7.2
- php: 7.3
- php: 7.4
allow_failures:
- php: hhvm

Expand Down
10 changes: 9 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.14",
"phpstan/phpstan": "^0.11.19",
"phpstan/phpstan-phpunit": "^0.11.2",
"phpunit/phpunit": "8.0.6"
},
"autoload": {
Expand All @@ -35,6 +37,12 @@
"scripts": {
"cs-check": "php-cs-fixer -v --dry-run --using-cache=no fix",
"cs-fix": "php-cs-fixer --using-cache=no fix",
"test": "phpunit --configuration ~/PriceCalculator/phpunit.xml"
"test": "phpunit --configuration ~/PriceCalculator/phpunit.xml",
"analyze": "vendor/bin/phpstan analyse -c phpstan.neon.dist src tests",
"check": [
"@cs-check",
"@analyze",
"@test"
]
}
}
Loading

0 comments on commit bdbdb52

Please sign in to comment.