Skip to content

Commit ec1f36d

Browse files
authored
Laravel 10 (#55)
1 parent bb1822f commit ec1f36d

File tree

2 files changed

+22
-7
lines changed

2 files changed

+22
-7
lines changed

Diff for: .github/workflows/tests.yml

+17-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
fail-fast: true
1111
matrix:
1212
php: [7.2, 7.3, 7.4, 8.0, 8.1]
13-
laravel: [^6.0, ^7.0, ^8.0, ^9.0]
13+
laravel: [^6.0, ^7.0, ^8.0, ^9.0, ^10.0]
1414
dependency-version: [prefer-lowest, prefer-stable]
1515
exclude:
1616

@@ -28,12 +28,24 @@ jobs:
2828
- php: 7.2
2929
laravel: ^9.0
3030

31+
- php: 7.2
32+
laravel: ^10.0
33+
3134
- php: 7.3
3235
laravel: ^9.0
3336

37+
- php: 7.3
38+
laravel: ^10.0
39+
3440
- php: 7.4
3541
laravel: ^9.0
3642

43+
- php: 7.4
44+
laravel: ^10.0
45+
46+
- php: 8.0
47+
laravel: ^10.0
48+
3749
- php: 8.1
3850
laravel: ^6.0
3951

@@ -53,6 +65,9 @@ jobs:
5365
- laravel: ^9.0
5466
testbench: ^7.0
5567

68+
- laravel: ^10.0
69+
testbench: ^8.0
70+
5671
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
5772

5873
steps:
@@ -72,7 +87,7 @@ jobs:
7287
with:
7388
timeout_minutes: 5
7489
max_attempts: 5
75-
command: composer require phpunit/phpunit:^9.5.8 --no-interaction --no-update
90+
command: composer require phpunit/phpunit:^9.5.8 --dev --no-interaction --no-update
7691
if: matrix.php >= 8.1
7792

7893
- name: Install dependencies

Diff for: composer.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@
2020
}
2121
],
2222
"require": {
23-
"php": "^7.2.5|^8.0",
24-
"illuminate/console": "^6.0|^7.0|^8.0|^9.0",
25-
"illuminate/support": "^6.0|^7.0|^8.0|^9.0"
23+
"php": "^7.2.5|^8.0|^8.1",
24+
"illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0",
25+
"illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0"
2626
},
2727
"require-dev": {
28-
"orchestra/testbench": "~3.8.0|^4.0|^5.0|^6.3|^7.0",
29-
"phpunit/phpunit": "^8.0|^9.0"
28+
"orchestra/testbench": "~3.8.0|^4.0|^5.0|^6.3|^7.0|^8.0",
29+
"phpunit/phpunit": "^8.0|^9.0|^10.0"
3030
},
3131
"autoload": {
3232
"psr-4": {

0 commit comments

Comments
 (0)