Skip to content

Commit

Permalink
Composer.json updated
Browse files Browse the repository at this point in the history
  • Loading branch information
paramtamtam committed Jun 10, 2018
1 parent 7c5042a commit 04e1c84
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .scrutinizer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ build:
coverage:
file: 'clover-file'
format: 'clover'
-
command: 'composer phpstan'

dependencies:
override:
Expand Down
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@
### Changed

- CI config updated
- Package PHPUnit minimal version now is `6.4`
- Minimal Laravel version up to `5.5`
- Minimal PHPUnit version up to `6.0`
- Integrated package `avto-dev/dev-tools` (dev)
- Integrated package `phpstan/phpstan` (dev)
- Unimportant PHPDoc blocks removed
- Code a little bit refactored

Expand Down
8 changes: 5 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,11 @@
"ext-pdo_sqlite": "*",
"ext-sqlite3": "*",
"ext-zlib": "*",
"avto-dev/dev-tools": "^1.1",
"avto-dev/dev-tools": "^1.1.6",
"laravel/laravel": ">=5.5.0 <5.7.0",
"mockery/mockery": "0.9.* || ~1.0",
"phpunit/phpunit": "~6.4 || ~7.0"
"phpunit/phpunit": "~6.0 || ~7.0",
"phpstan/phpstan": "~0.9"
},
"autoload": {
"psr-4": {
Expand All @@ -39,7 +40,8 @@
},
"scripts": {
"test": "@php ./vendor/bin/phpunit --no-coverage",
"test-cover": "@php ./vendor/bin/phpunit --coverage-html='./coverage/html'"
"test-cover": "@php ./vendor/bin/phpunit --coverage-html='./coverage/html'",
"phpstan": "@php ./vendor/bin/phpstan analyse --level=1 ./src"
},
"extra": {
"laravel": {
Expand Down

0 comments on commit 04e1c84

Please sign in to comment.