Skip to content

Commit d657c56

Browse files
authored
Merge pull request #23 from InteractionDesignFoundation/l13
Add Laravel 13 support
2 parents 3176694 + 1bd7059 commit d657c56

3 files changed

Lines changed: 10 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: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,17 @@ jobs:
88
strategy:
99
fail-fast: true
1010
matrix:
11-
php: [ 8.3, 8.2 ]
11+
php: [ 8.5, 8.4, 8.3 ]
1212
dependency-version: ['--prefer-lowest', '--prefer-stable']
13-
laravel: [11.*, 10.*]
13+
laravel: [12.*, 11.*]
1414
include:
15-
- laravel: 10.*
16-
testbench: 8.*
1715
- laravel: 11.*
1816
testbench: 9.*
17+
- laravel: 12.*
18+
testbench: 10.*
19+
# L13 matrix entry ready for when laravel/nova supports it:
20+
# - laravel: 13.*
21+
# testbench: 11.*
1922

2023
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
2124

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@
1111
"world"
1212
],
1313
"require": {
14-
"php": "^8.1",
14+
"php": "^8.3",
1515
"ext-json": "*",
1616
"laravel/nova": "^4.20 || ^5.0"
1717
},
1818
"require-dev": {
1919
"interaction-design-foundation/coding-standard": "^0.4",
20-
"orchestra/testbench-core": "^8.33 || ^9.10 || ^10.0",
20+
"orchestra/testbench-core": "^8.33 || ^9.10 || ^10.0 || ^11.0",
2121
"phpunit/phpunit": "^10.5 || ^11.0 || ^12.0",
2222
"vimeo/psalm": "^6.0"
2323
},

0 commit comments

Comments
 (0)