-
- Downloads
Use phpunit directly instead of via phpunit-bridge
This way the phpunit dependencies can be pinned.
Showing
- .gitignore 9 additions, 9 deletions.gitignore
- composer.json 3 additions, 4 deletionscomposer.json
- composer.lock 1819 additions, 145 deletionscomposer.lock
- phpstan.neon 0 additions, 2 deletionsphpstan.neon
- phpunit.xml.dist 0 additions, 2 deletionsphpunit.xml.dist
- symfony.lock 92 additions, 0 deletionssymfony.lock
... | ... | @@ -55,17 +55,15 @@ |
"@auto-scripts" | ||
], | ||
"test": [ | ||
"@php bin/phpunit" | ||
"@php vendor/bin/phpunit" | ||
], | ||
"coverage": [ | ||
"@php bin/phpunit --coverage-html _coverage" | ||
"@php vendor/bin/phpunit --coverage-html _coverage" | ||
], | ||
"phpstan": [ | ||
"@php bin/phpunit --atleast-version 0", | ||
"@php vendor/bin/phpstan analyze --ansi" | ||
], | ||
"psalm": [ | ||
"@php bin/phpunit --atleast-version 0", | ||
"@php vendor/bin/psalm" | ||
], | ||
"lint": [ | ||
... | ... | @@ -97,6 +95,7 @@ |
"friendsofphp/php-cs-fixer": "^3.0", | ||
"phpstan/phpstan": "^1.0.2", | ||
"phpstan/phpstan-phpunit": "^1.0.0", | ||
"phpunit/phpunit": "^9", | ||
"symfony/browser-kit": "^5.4", | ||
"symfony/debug-bundle": "^5.4", | ||
"symfony/http-client": "^5.4", | ||
... | ... |
This diff is collapsed.
Please register or sign in to comment