Skip to content

Commit 28f3a05

Browse files
committed
support for PHP 8.2, 8.2 and Laravel 11
1 parent f248970 commit 28f3a05

File tree

2 files changed

+12
-6
lines changed

2 files changed

+12
-6
lines changed

.github/workflows/run-tests.yml

+8-2
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,19 @@ jobs:
1313
fail-fast: true
1414
matrix:
1515
os: [ubuntu-latest, windows-latest]
16-
php: [8.2, 8.1]
17-
laravel: [10.*]
16+
php: [8.3, 8.2, 8.1]
17+
laravel: [10.*, 11.*]
1818
stability: [prefer-lowest, prefer-stable]
1919
include:
2020
- laravel: 10.*
2121
testbench: 8.*
2222
carbon: ^2.63
23+
- laravel: 11.*
24+
testbench: 9.*
25+
carbon: ^3.0
26+
exclude:
27+
- laravel: 11.*
28+
php: 8.1
2329

2430
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
2531

composer.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^8.1",
19+
"php": "^8.1|^8.2|^8.3",
2020
"spatie/laravel-package-tools": "^1.14.0",
21-
"illuminate/contracts": "^10.0",
21+
"illuminate/contracts": "^10.0|^11.0",
2222
"laravel/pulse": "^1.0@beta"
2323
},
2424
"require-dev": {
2525
"laravel/pint": "^1.0",
26-
"nunomaduro/collision": "^7.8",
27-
"orchestra/testbench": "^8.8",
26+
"nunomaduro/collision": "^7.8|^8.0",
27+
"orchestra/testbench": "^8.8|^9.0",
2828
"pestphp/pest": "^2.20",
2929
"pestphp/pest-plugin-arch": "^2.0",
3030
"pestphp/pest-plugin-laravel": "^2.0"

0 commit comments

Comments
 (0)