We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 78171c8 + e8f30a3 commit 6ed37e4Copy full SHA for 6ed37e4
.github/workflows/phpunit.yml
@@ -10,7 +10,7 @@ jobs:
10
fail-fast: true
11
matrix:
12
os: [ubuntu-latest]
13
- php: [7.4]
+ php: [7.4, 8.0]
14
laravel: [8.*, 7.*]
15
dependency-version: [prefer-lowest, prefer-stable]
16
include:
@@ -45,4 +45,4 @@ jobs:
45
composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction --no-suggest
46
47
- name: Execute test suite
48
- run: ./vendor/bin/phpunit
+ run: ./vendor/bin/phpunit
composer.json
@@ -19,7 +19,7 @@
19
}
20
],
21
"require": {
22
- "php": "^7.3",
+ "php": "^7.3 | ^8.0",
23
"illuminate/database": "^7.0 | ^8.0",
24
"illuminate/support": "^7.0 | ^8.0"
25
},
0 commit comments