Skip to content

Commit 15b2a40

Browse files
committed
Allow laravel 8
1 parent 0cb587b commit 15b2a40

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

.github/workflows/run-tests.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,14 @@ jobs:
1010
matrix:
1111
os: [ubuntu-latest]
1212
php: [7.4]
13-
laravel: [7.*]
13+
laravel: [^7.0, ^8.0]
1414
dependency-version: [prefer-stable]
1515
include:
16-
- laravel: 7.*
17-
testbench: 5.*
16+
- laravel: ^7.0
17+
testbench: ^5.2
18+
include:
19+
- laravel: ^8.0
20+
testbench: ^6.0
1821

1922
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }}
2023

composer.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,17 @@
1818
],
1919
"require": {
2020
"php": "^7.4",
21-
"illuminate/support": "^7.0",
21+
"illuminate/support": "^7.0|^8.0",
2222
"opis/closure": "^3.5",
2323
"tijsverkoyen/css-to-inline-styles": "^2.2"
2424
},
2525
"require-dev": {
2626
"friendsofphp/php-cs-fixer": "^2.16",
27-
"orchestra/testbench": "^5.0",
27+
"laravel/legacy-factories": "^1.0",
28+
"orchestra/testbench": "^5.2|^6.0",
2829
"phpunit/phpunit": "^9.0",
29-
"spatie/test-time": "^1.2",
3030
"psalm/plugin-laravel": "^1.2",
31+
"spatie/test-time": "^1.2",
3132
"vimeo/psalm": "^3.11"
3233
},
3334
"autoload": {

0 commit comments

Comments
 (0)