Skip to content

Commit d31e57e

Browse files
authored
Merge pull request #15 from worksome/feature/pest-2.x
feat: update to Pest 2.x
2 parents 782ba46 + c2113fa commit d31e57e

File tree

4 files changed

+11
-27
lines changed

4 files changed

+11
-27
lines changed

.github/workflows/run-tests.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,9 @@ jobs:
1717
matrix:
1818
os: [ubuntu-latest, windows-latest]
1919
php: [8.2]
20-
laravel: [9.*, 10.*]
20+
laravel: [10.*]
2121
stability: [prefer-lowest, prefer-stable]
2222
include:
23-
- laravel: 9.*
24-
testbench: ^7.20
2523
- laravel: 10.*
2624
testbench: 8.*
2725

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.idea
22
.php_cs
33
.php_cs.cache
4-
.phpunit.result.cache
4+
.phpunit.cache
55
build
66
composer.lock
77
coverage

composer.json

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -17,20 +17,18 @@
1717
],
1818
"require": {
1919
"php": "^8.2",
20-
"illuminate/contracts": "^9.49|^10.0",
21-
"nunomaduro/termwind": "^v1.15",
20+
"illuminate/contracts": "^10.0",
21+
"nunomaduro/termwind": "^1.15",
2222
"spatie/laravel-package-tools": "^1.14"
2323
},
2424
"require-dev": {
25-
"guzzlehttp/guzzle": "^7.4",
26-
"nunomaduro/collision": "^6.3",
25+
"guzzlehttp/guzzle": "^7.5",
26+
"nunomaduro/collision": "^7.0",
2727
"nunomaduro/larastan": "^2.4",
28-
"orchestra/testbench": "^7.20|^8.0",
29-
"pestphp/pest": "^1.22",
30-
"pestphp/pest-plugin-laravel": "^1.4",
31-
"pestphp/pest-plugin-parallel": "^1.0",
32-
"worksome/coding-style": "^2.3",
33-
"worksome/pest-plugin-silence": "^0.1.2"
28+
"orchestra/testbench": "^8.0",
29+
"pestphp/pest": "^2.0",
30+
"pestphp/pest-plugin-laravel": "^2.0",
31+
"worksome/coding-style": "^2.3"
3432
},
3533
"autoload": {
3634
"psr-4": {

phpunit.xml.dist

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,9 @@
22
<phpunit
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
5-
backupGlobals="false"
6-
backupStaticAttributes="false"
75
bootstrap="vendor/autoload.php"
86
colors="true"
9-
convertErrorsToExceptions="true"
10-
convertNoticesToExceptions="true"
11-
convertWarningsToExceptions="true"
12-
processIsolation="false"
13-
stopOnFailure="false"
14-
executionOrder="random"
15-
failOnWarning="true"
16-
failOnRisky="true"
17-
failOnEmptyTestSuite="true"
18-
beStrictAboutOutputDuringTests="true"
19-
verbose="true"
7+
cacheDirectory=".phpunit.cache"
208
>
219
<groups>
2210
<exclude>

0 commit comments

Comments
 (0)