Skip to content

Commit 418bc8e

Browse files
Laravel 12.x Compatibility (#57)
1 parent b322bbd commit 418bc8e

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

.github/workflows/php.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
max-parallel: 15
1313
matrix:
1414
php: ['7.4', '8.0', '8.1', '8.2']
15-
laravel: ['6.*', '7.*', '8.*', '9.*', '10.*', '11.*']
15+
laravel: ['6.*', '7.*', '8.*', '9.*', '10.*', '11.*', '12.*']
1616
exclude:
1717
- laravel: 6.*
1818
php: '8.0'
@@ -40,6 +40,12 @@ jobs:
4040
php: '8.0'
4141
- laravel: 11.*
4242
php: '8.1'
43+
- laravel: 12.*
44+
php: '7.4'
45+
- laravel: 12.*
46+
php: '8.0'
47+
- laravel: 12.*
48+
php: '8.1'
4349

4450
name: PHP ${{ matrix.php }} on Laravel ${{ matrix.laravel }}
4551

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@
1818
"require": {
1919
"php": "^7.2.5 || ^8.0",
2020
"guzzlehttp/guzzle": "^6.2 || ^7.0",
21-
"illuminate/notifications": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0",
22-
"illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0"
21+
"illuminate/notifications": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0 || ^12.0",
22+
"illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0 || ^12.0"
2323
},
2424
"require-dev": {
2525
"mockery/mockery": "^1.3",
26-
"phpunit/phpunit": "^9.0 || ^10.5",
27-
"orchestra/testbench": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
26+
"phpunit/phpunit": "^9.0 || ^10.5 || ^11.5.3",
27+
"orchestra/testbench": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0"
2828
},
2929
"autoload": {
3030
"psr-4": {

0 commit comments

Comments
 (0)