Skip to content

Commit 807a969

Browse files
authored
Merge pull request #26 from laravel-shift/l12-compatibility
Laravel 12.x Compatibility
2 parents 78e00d5 + 3702a4d commit 807a969

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

.github/workflows/run-tests.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,9 @@ jobs:
1313
matrix:
1414
os: [ubuntu-latest]
1515
php: [8.2]
16-
laravel: ['10.*', '11.*']
16+
laravel: ['10.*', '11.*', '12.*']
1717
dependency-version: [prefer-stable]
1818

19-
2019
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }}
2120

2221
steps:
@@ -32,7 +31,7 @@ jobs:
3231

3332
- name: Install dependencies
3433
run: |
35-
composer require "laravel/framework:${{ matrix.laravel }}" "nesbot/carbon:^2.63" --no-interaction --no-update
34+
composer require "laravel/framework:${{ matrix.laravel }}" --no-interaction --no-update
3635
composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction
3736
3837
- name: Execute tests

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@
2222
"prefer-stable": true,
2323
"require": {
2424
"php": "^8.2",
25-
"illuminate/http": "^10|^11.0"
25+
"illuminate/http": "^10|^11.0|^12.0"
2626
},
2727
"require-dev": {
28-
"orchestra/testbench": "^8.0|^9.0",
29-
"phpunit/phpunit": "^9.4|^10.5"
28+
"orchestra/testbench": "^8.0|^9.0|^10.0",
29+
"phpunit/phpunit": "^9.4|^10.5|^11.5.3"
3030
},
3131
"autoload": {
3232
"psr-4": {

0 commit comments

Comments
 (0)