Skip to content

Commit caa92fd

Browse files
authored
Add support for Laravel 13 (#279)
* chore(deps): add support for Laravel 13 * ci: add support for Laravel 13 * ci: remove PHPUnit 12
1 parent 7c9b9cb commit caa92fd

File tree

2 files changed

+17
-9
lines changed

2 files changed

+17
-9
lines changed

.github/workflows/tests.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
fail-fast: true
1818
matrix:
1919
php: [7.4, '8.0', 8.1, 8.2, 8.3, 8.4, 8.5]
20-
laravel: [8, 9, 10, 11, 12]
20+
laravel: [8, 9, 10, 11, 12, 13]
2121
exclude:
2222
- php: 7.4
2323
laravel: 9
@@ -27,18 +27,26 @@ jobs:
2727
laravel: 11
2828
- php: 7.4
2929
laravel: 12
30+
- php: 7.4
31+
laravel: 13
3032
- php: '8.0'
3133
laravel: 10
3234
- php: '8.0'
3335
laravel: 11
3436
- php: '8.0'
3537
laravel: 12
38+
- php: '8.0'
39+
laravel: 13
3640
- php: 8.1
3741
laravel: 11
3842
- php: 8.1
3943
laravel: 12
44+
- php: 8.1
45+
laravel: 13
4046
- php: 8.2
4147
laravel: 8
48+
- php: 8.2
49+
laravel: 13
4250
- php: 8.3
4351
laravel: 8
4452
- php: 8.3
@@ -78,7 +86,7 @@ jobs:
7886
fail-fast: true
7987
matrix:
8088
php: [8.5]
81-
laravel: [10, 11]
89+
laravel: [10, 11, 12]
8290

8391
name: Windows - PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}
8492

composer.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,16 @@
2626
],
2727
"require": {
2828
"php": "^7.4|^8.0",
29-
"illuminate/contracts": "^8.0|^9.0|^10.0|^11.0|^12.0",
30-
"illuminate/filesystem": "^8.0|^9.0|^10.0|^11.0|^12.0",
31-
"illuminate/support": "^8.0|^9.0|^10.0|^11.0|^12.0",
32-
"illuminate/view": "^8.0|^9.0|^10.0|^11.0|^12.0",
33-
"symfony/console": "^5.3|^6.0|^7.0",
34-
"symfony/finder": "^5.3|^6.0|^7.0"
29+
"illuminate/contracts": "^8.0|^9.0|^10.0|^11.0|^12.0|^13.0",
30+
"illuminate/filesystem": "^8.0|^9.0|^10.0|^11.0|^12.0|^13.0",
31+
"illuminate/support": "^8.0|^9.0|^10.0|^11.0|^12.0|^13.0",
32+
"illuminate/view": "^8.0|^9.0|^10.0|^11.0|^12.0|^13.0",
33+
"symfony/console": "^5.3|^6.0|^7.0|^8.0",
34+
"symfony/finder": "^5.3|^6.0|^7.0|^8.0"
3535
},
3636
"require-dev": {
3737
"mockery/mockery": "^1.5.1",
38-
"orchestra/testbench": "^6.0|^7.0|^8.0|^9.0|^10.0",
38+
"orchestra/testbench": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
3939
"phpunit/phpunit": "^9.0|^10.5|^11.0"
4040
},
4141
"bin": [

0 commit comments

Comments
 (0)