Skip to content

Commit d442d03

Browse files
committed
feat: Laravel 10 support
1 parent 4970efb commit d442d03

File tree

2 files changed

+10
-12
lines changed

2 files changed

+10
-12
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,12 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
php: [ 7.3, 7.4, 8.0 ]
19-
laravel: [ '^6.10', '^8.0', '^9.0' ]
18+
php: [ 8.0, 8.1, 8.2 ]
19+
laravel: [ '^9.0', '^10.0' ]
2020
dependency-version: [prefer-lowest, prefer-stable]
2121
exclude:
22-
- php: 7.4
23-
laravel: '^9.0'
24-
- php: 7.3
25-
laravel: '^9.0'
22+
- php: 8.0
23+
laravel: '^10.0'
2624

2725
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} - ${{ matrix.dependency-version }}
2826

@@ -31,10 +29,10 @@ jobs:
3129
run: sudo apt-get update --fix-missing
3230

3331
- name: Checkout code
34-
uses: actions/checkout@v2
32+
uses: actions/checkout@v3
3533

3634
- name: Cache dependencies
37-
uses: actions/cache@v2
35+
uses: actions/cache@v3
3836
with:
3937
path: ~/.composer/cache/files
4038
key: laravel-${{ matrix.laravel }}-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }}

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@
1414
}
1515
],
1616
"require": {
17-
"php": "^7.3 || ^8.0",
18-
"illuminate/support": "^6.10 || ^8.0 || ^9.0",
19-
"illuminate/http": "^6.10 || ^8.0 || ^9.0"
17+
"php": "^8.0",
18+
"illuminate/support": "^9.0 || ^10.0",
19+
"illuminate/http": "^9.0 || ^10.0"
2020
},
2121
"require-dev": {
22-
"orchestra/testbench": "^4.18 || ^6.24 || ^7.3",
22+
"orchestra/testbench": "^7.3 || ^8.0",
2323
"phpunit/phpunit": "^9.5"
2424
},
2525
"autoload": {

0 commit comments

Comments
 (0)