Skip to content

Commit bf05662

Browse files
Merge pull request #6 from minhnhut/main
fix: Add Laravel 13 support
2 parents d8555fe + 3cc580b commit bf05662

3 files changed

Lines changed: 10 additions & 6 deletions

File tree

.github/workflows/tests.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,16 @@ jobs:
1313
fail-fast: false
1414
matrix:
1515
php: ['8.1', '8.2', '8.3', '8.4']
16-
laravel: ['10.*', '11.*', '12.*']
16+
laravel: ['10.*', '11.*', '12.*', '13.*']
1717
exclude:
1818
- php: '8.1'
1919
laravel: '11.*'
2020
- php: '8.1'
2121
laravel: '12.*'
22+
- php: '8.1'
23+
laravel: '13.*'
24+
- php: '8.2'
25+
laravel: '13.*'
2226

2327
name: PHP ${{ matrix.php }} / Laravel ${{ matrix.laravel }}
2428

CLAUDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,4 @@ vendor/bin/phpunit --coverage-html coverage/
6767

6868
## CI
6969

70-
GitHub Actions runs PHPUnit across PHP 8.1–8.4 and Laravel 10–12 (excluding PHP 8.1 + Laravel 11/12).
70+
GitHub Actions runs PHPUnit across PHP 8.1–8.4 and Laravel 10–13 (excluding PHP 8.1 + Laravel 11/12/13, PHP 8.2 + Laravel 13).

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@
1717
},
1818
"require": {
1919
"php": "^8.1|^8.2|^8.3|^8.4",
20-
"illuminate/support": "^10.0|^11.0|^12.0",
21-
"illuminate/contracts": "^10.0|^11.0|^12.0",
22-
"symfony/process": "^6.0|^7.0"
20+
"illuminate/support": "^10.0|^11.0|^12.0|^13.0",
21+
"illuminate/contracts": "^10.0|^11.0|^12.0|^13.0",
22+
"symfony/process": "^6.0|^7.0|^8.0"
2323
},
2424
"require-dev": {
25-
"orchestra/testbench": "^8.0|^9.0|^10.0",
25+
"orchestra/testbench": "^8.0|^9.0|^10.0|^11.0",
2626
"phpunit/phpunit": "^10.0|^11.0",
2727
"mockery/mockery": "^1.6"
2828
},

0 commit comments

Comments
 (0)