Skip to content

Commit ec4798f

Browse files
authored
Merge pull request #37 from laravel-shift/l12-compatibility
Laravel 12.x Compatibility
2 parents 7c09c90 + 0724aeb commit ec4798f

File tree

2 files changed

+12
-10
lines changed

2 files changed

+12
-10
lines changed

.github/workflows/tests.yml

+8-6
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ on:
44
pull_request:
55
push:
66
paths:
7-
- '**.php'
8-
- '.github/workflows/tests.yml'
9-
- 'phpunit.xml.dist'
10-
- 'composer.json'
11-
- 'composer.lock'
7+
- **.php
8+
- .github/workflows/tests.yml
9+
- phpunit.xml.dist
10+
- composer.json
11+
- composer.lock
1212

1313
jobs:
1414
php-tests:
@@ -18,11 +18,13 @@ jobs:
1818
fail-fast: false
1919
matrix:
2020
php: ['8.1', '8.2', '8.3']
21-
laravel: ['10.*', '11.*']
21+
laravel: ['10.*', '11.*', '12.*']
2222
stability: [prefer-lowest, prefer-stable]
2323
exclude:
2424
- laravel: 11.*
2525
php: '8.1'
26+
- laravel: 12.*
27+
php: '8.1'
2628

2729
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }}
2830

composer.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@
1818
],
1919
"require": {
2020
"php": "^8.1",
21-
"illuminate/console": "^10.0|^11.0",
22-
"illuminate/contracts": "^10.0|^11.0",
23-
"illuminate/database": "^10.0|^11.0",
24-
"illuminate/support": "^10.0|^11.0"
21+
"illuminate/console": "^10.0|^11.0|^12.0",
22+
"illuminate/contracts": "^10.0|^11.0|^12.0",
23+
"illuminate/database": "^10.0|^11.0|^12.0",
24+
"illuminate/support": "^10.0|^11.0|^12.0"
2525
},
2626
"require-dev": {
2727
"laravel/pint": "^1.15",

0 commit comments

Comments
 (0)