Skip to content
Snippets Groups Projects
Commit 4e3eebc2 authored by Reiter, Christoph's avatar Reiter, Christoph :snake:
Browse files

Use phpunit directly

parent bb96aaac
No related branches found
No related tags found
No related merge requests found
Pipeline #90947 passed
...@@ -19,6 +19,7 @@ ...@@ -19,6 +19,7 @@
"mockery/mockery": "^1.4", "mockery/mockery": "^1.4",
"phpstan/phpstan": "^1.0.0", "phpstan/phpstan": "^1.0.0",
"phpstan/phpstan-phpunit": "^1.0.0", "phpstan/phpstan-phpunit": "^1.0.0",
"phpunit/phpunit": "^9.5",
"symfony/browser-kit": "^5.2", "symfony/browser-kit": "^5.2",
"symfony/http-client": "^5.2", "symfony/http-client": "^5.2",
"symfony/monolog-bundle": "^3.7", "symfony/monolog-bundle": "^3.7",
...@@ -43,14 +44,12 @@ ...@@ -43,14 +44,12 @@
}, },
"scripts": { "scripts": {
"test": [ "test": [
"@php vendor/bin/simple-phpunit" "@php vendor/bin/phpunit"
], ],
"phpstan": [ "phpstan": [
"@php vendor/bin/simple-phpunit --atleast-version 0",
"@php vendor/bin/phpstan analyze --ansi" "@php vendor/bin/phpstan analyze --ansi"
], ],
"psalm": [ "psalm": [
"@php vendor/bin/simple-phpunit --atleast-version 0",
"@php vendor/bin/psalm" "@php vendor/bin/psalm"
], ],
"lint": [ "lint": [
...@@ -65,7 +64,7 @@ ...@@ -65,7 +64,7 @@
"@php vendor/bin/php-cs-fixer --ansi fix --dry-run --diff" "@php vendor/bin/php-cs-fixer --ansi fix --dry-run --diff"
], ],
"coverage": [ "coverage": [
"@php vendor/bin/simple-phpunit --coverage-html _coverage" "@php vendor/bin/phpunit --coverage-html _coverage"
] ]
} }
} }
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment