Skip to content

Commit 5ec0f1b

Browse files
authored
Laravel 12 Support (#27)
1 parent 7b2ac54 commit 5ec0f1b

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.github/workflows/unit-tests.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,12 @@ jobs:
88
strategy:
99
max-parallel: 10
1010
matrix:
11-
laravel-version: ['^11.1']
11+
laravel-version: ['^11.1', '^12.1']
1212
preference: ['stable']
13-
php-version: ['8.2', '8.3']
13+
php-version: ['8.2', '8.3', '8.4']
14+
exclude:
15+
- laravel-version: ^12.1
16+
php-version: 8.2
1417
name: Laravel ${{ matrix.laravel-version }} (${{ matrix.preference }}) on PHP ${{ matrix.php-version }}
1518
steps:
1619
- name: Checkout

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
],
2424
"require": {
2525
"php": "^8.2",
26-
"illuminate/support": "^11.1",
26+
"illuminate/support": "^11.1 || ^12.1",
2727
"intervention/image": "^3.7",
2828
"reliqarts/laravel-common": "^8.0",
2929
"ext-json": "*",
@@ -32,7 +32,7 @@
3232
},
3333
"require-dev": {
3434
"laravel/pint": "^1.15",
35-
"orchestra/testbench": "^9.0",
35+
"orchestra/testbench": "^9.0 || ^10.0",
3636
"phpro/grumphp": "^2.5",
3737
"phpspec/prophecy-phpunit": "^2.0",
3838
"phpunit/phpunit": "^11.0",

0 commit comments

Comments
 (0)