-
- Downloads
Depend on phpunit directly instead of using the phpunit-bridge
... | ... | @@ -13,6 +13,7 @@ |
"friendsofphp/php-cs-fixer": "^3.0", | ||
"phpstan/phpstan": "^1.0.0", | ||
"phpstan/phpstan-phpunit": "^1.0.0", | ||
"phpunit/phpunit": "^9", | ||
"symfony/browser-kit": "^5.2", | ||
"symfony/http-client": "^5.2", | ||
"symfony/monolog-bundle": "^3.7", | ||
... | ... | @@ -37,14 +38,12 @@ |
}, | ||
"scripts": { | ||
"test": [ | ||
"@php vendor/bin/simple-phpunit" | ||
"@php vendor/bin/phpunit" | ||
], | ||
"phpstan": [ | ||
"@php vendor/bin/simple-phpunit --atleast-version 0", | ||
"@php vendor/bin/phpstan analyze --ansi" | ||
], | ||
"psalm": [ | ||
"@php vendor/bin/simple-phpunit --atleast-version 0", | ||
"@php vendor/bin/psalm" | ||
], | ||
"lint": [ | ||
... | ... | @@ -59,7 +58,7 @@ |
"@php vendor/bin/php-cs-fixer --ansi fix --dry-run --diff" | ||
], | ||
"coverage": [ | ||
"@php vendor/bin/simple-phpunit --coverage-html _coverage" | ||
"@php vendor/bin/phpunit --coverage-html _coverage" | ||
] | ||
} | ||
} |
This diff is collapsed.
Please sign in to comment