Skip to content

Commit 029db32

Browse files
authored
Merge pull request #55 from InteractionDesignFoundation/l13
Add Laravel 13 support
2 parents c30f4c6 + 1ddc393 commit 029db32

3 files changed

Lines changed: 9 additions & 7 deletions

File tree

.github/workflows/psalm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Setup PHP
1717
uses: shivammathur/setup-php@v2
1818
with:
19-
php-version: '8.3'
19+
php-version: '8.4'
2020
coverage: none
2121

2222
- name: Cache composer dependencies

.github/workflows/run-tests.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,14 @@ jobs:
88
strategy:
99
fail-fast: true
1010
matrix:
11-
php: [ 8.3, 8.2 ]
12-
laravel: [ 10.* ]
11+
php: [ 8.4, 8.3, 8.2 ]
12+
laravel: [ 12.*, 13.* ]
1313
dependency-version: [ prefer-stable ]
1414
include:
15-
- laravel: 10.*
16-
testbench: 8.*
15+
- laravel: 12.*
16+
testbench: 10.*
17+
- laravel: 13.*
18+
testbench: 11.*
1719

1820
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
1921

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@
99
"html"
1010
],
1111
"require": {
12-
"php": "^8.1",
12+
"php": "^8.2",
1313
"ext-json": "*",
1414
"laravel/nova": "^4.20 || ^5.0"
1515
},
1616
"require-dev": {
1717
"interaction-design-foundation/coding-standard": "^0.6",
18-
"orchestra/testbench-core": "^10.0.2",
18+
"orchestra/testbench-core": "^10.0.2 || ^11.0",
1919
"phpunit/phpunit": "^10.5 || ^11.0 || ^12.0",
2020
"vimeo/psalm": "^6.0"
2121
},

0 commit comments

Comments
 (0)