Skip to content

Commit f53fc56

Browse files
committed
feat: add support for Pest 2.x
1 parent 6afadb3 commit f53fc56

File tree

2 files changed

+7
-10
lines changed

2 files changed

+7
-10
lines changed

composer.json

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,26 +17,24 @@
1717
],
1818
"require": {
1919
"php": "^8.2",
20-
"illuminate/contracts": "^9.46 || ^10.0",
20+
"illuminate/contracts": "^10.0",
2121
"nuwave/lighthouse": "^6.0.0",
22-
"pestphp/pest": "^1.22.3",
23-
"pestphp/pest-plugin-laravel": "^1.3"
22+
"pestphp/pest": "^2.0",
23+
"pestphp/pest-plugin-laravel": "^2.0"
2424
},
2525
"require-dev": {
26-
"nunomaduro/collision": "^6.4",
27-
"nunomaduro/larastan": "^2.3.4",
26+
"brianium/paratest": "^7.1",
27+
"nunomaduro/collision": "^7.0",
28+
"nunomaduro/larastan": "^2.4",
2829
"orchestra/testbench": "^7.18 || ^8.0",
29-
30-
"pestphp/pest-plugin-parallel": "^1.2",
31-
"worksome/coding-style": "^2.3.2"
30+
"worksome/coding-style": "^2.5"
3231
},
3332
"autoload": {
3433
"psr-4": {
3534
"Worksome\\PestGraphqlCoverage\\": "src"
3635
}
3736
},
3837
"scripts": {
39-
"post-autoload-dump": "@php ./vendor/bin/testbench package:discover --ansi",
4038
"lint": "vendor/bin/ecs --fix",
4139
"test:coverage": "vendor/bin/pest -p --coverage",
4240
"test:types": "vendor/bin/phpstan analyse",

phpunit.xml.dist

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
failOnRisky="true"
1010
failOnEmptyTestSuite="true"
1111
beStrictAboutOutputDuringTests="true"
12-
verbose="true"
1312
>
1413
<testsuites>
1514
<testsuite name="Worksome Test Suite">

0 commit comments

Comments
 (0)