Skip to content

Commit 270881c

Browse files
[7.x] PHP 8.5 compatibility (#1253)
* Add PHP 8.5 to testing matrix * remove minimum-stability * wip * wip * wip * pest requires phpunit
1 parent 3f1d10e commit 270881c

2 files changed

Lines changed: 9 additions & 7 deletions

File tree

.github/workflows/tests.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,17 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
php: [8.2, 8.3, 8.4]
15+
php: [8.2, 8.3, 8.4, 8.5]
1616
laravel: [10.*, 11.*, 12.*]
1717
stability: [prefer-lowest, prefer-stable]
1818
os: [ubuntu-latest]
1919
exclude:
2020
- php: 8.4
2121
laravel: 10.*
22+
- php: 8.5
23+
laravel: 10.*
24+
- php: 8.5
25+
laravel: 11.*
2226

2327
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }}
2428

composer.json

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,9 @@
4343
},
4444
"require-dev": {
4545
"statamic-rad-pack/runway": "^7.13 || ^8.0",
46-
"orchestra/testbench": "^8.28 || ^9.6.1 || ^10.0",
47-
"phpunit/phpunit": "^10.5.35 || ^11.0",
48-
"pestphp/pest": "^2.2 || ^3.0",
49-
"pestphp/pest-plugin-laravel": "^2.0 || ^3.0",
46+
"orchestra/testbench": "^8.28 || ^9.6.1 || ^10.8",
47+
"pestphp/pest": "^2.2 || ^3.0 || ^4.1.4",
48+
"pestphp/pest-plugin-laravel": "^2.0 || ^3.0 || ^4.0",
5049
"spatie/ray": "^1.17",
5150
"spatie/test-time": "^1.3"
5251
},
@@ -60,6 +59,5 @@
6059
"pixelfear/composer-dist-plugin": true,
6160
"pestphp/pest-plugin": true
6261
}
63-
},
64-
"minimum-stability": "dev"
62+
}
6563
}

0 commit comments

Comments
 (0)