Skip to content

Commit cde0558

Browse files
committed
Feat: Adding Laravel 12 Support
1 parent 4329be3 commit cde0558

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

.github/workflows/run-tests.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,16 @@ jobs:
77
fail-fast: true
88
matrix:
99
os: [ubuntu-latest]
10-
php: [8.2, 8.3]
11-
laravel: [10.*, 11.*]
10+
php: [8.2, 8.3, 8.4]
11+
laravel: [10.*, 11.*, 12.*]
1212
stability: [prefer-stable]
1313
include:
1414
- laravel: 10.*
1515
testbench: 8.*
1616
- laravel: 11.*
1717
testbench: 9.*
18+
- laravel: 12.*
19+
testbench: 10.*
1820
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
1921
steps:
2022
- name: Checkout code

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^8.1|^8.2|^8.3",
20-
"illuminate/contracts": "^9.0|^10.0|^11.0",
19+
"php": "^8.1|^8.2|^8.3|^8.4",
20+
"illuminate/contracts": "^9.0|^10.0|^11.0|^12.0",
2121
"spatie/laravel-package-tools": "^1.14"
2222
},
2323
"require-dev": {
2424
"nunomaduro/collision": "^7.0|^8.0",
25-
"orchestra/testbench": "^8.0|^9.0",
25+
"orchestra/testbench": "^8.0|^9.0|^10.0",
2626
"pestphp/pest": "^2.0",
2727
"pestphp/pest-plugin-laravel": "^2.0",
2828
"phpstan/extension-installer": "^1.1",

0 commit comments

Comments
 (0)