Skip to content

Commit 5be9386

Browse files
authored
Support Laravel 12 (#466)
* Support Laravel 12 * Update run-tests.yml
1 parent d46d2d3 commit 5be9386

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/run-tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@ on:
77
pull_request:
88
branches:
99
- "*"
10-
schedule:
11-
- cron: '0 0 * * *'
1210

1311
jobs:
1412
php-tests:
@@ -19,12 +17,14 @@ jobs:
1917

2018
strategy:
2119
matrix:
22-
php: [8.3, 8.2, 8.1]
23-
laravel: [11.*, 10.*, 9.*]
20+
php: [8.4, 8.3, 8.2, 8.1]
21+
laravel: [12.*, 11.*, 10.*, 9.*]
2422
dependency-version: [prefer-lowest, prefer-stable]
2523
exclude:
2624
- laravel: 11.*
2725
php: 8.1
26+
- laravel: 12.*
27+
php: 8.1
2828

2929
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
3030

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@
1414
}
1515
],
1616
"require": {
17-
"php": ">=7.2",
18-
"illuminate/support": "^9|^10|^11",
19-
"illuminate/translation": "^9|^10|^11",
17+
"php": "^8.1",
18+
"illuminate/support": "^9|^10|^11|^12",
19+
"illuminate/translation": "^9|^10|^11|^12",
2020
"symfony/finder": "^6|^7"
2121
},
2222
"require-dev": {
23-
"orchestra/testbench": "^7|^8|^9"
23+
"orchestra/testbench": "^7|^8|^9|^10"
2424
},
2525
"suggest": {
2626
"tanmuhittin/laravel-google-translate": "If you want to translate using Google API"

0 commit comments

Comments
 (0)