Skip to content

Commit 6ed37e4

Browse files
authored
Merge pull request #5 from gofish543/Patch-PHP-8.0
Patch for PHP 8.0
2 parents 78171c8 + e8f30a3 commit 6ed37e4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/phpunit.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
fail-fast: true
1111
matrix:
1212
os: [ubuntu-latest]
13-
php: [7.4]
13+
php: [7.4, 8.0]
1414
laravel: [8.*, 7.*]
1515
dependency-version: [prefer-lowest, prefer-stable]
1616
include:
@@ -45,4 +45,4 @@ jobs:
4545
composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction --no-suggest
4646
4747
- name: Execute test suite
48-
run: ./vendor/bin/phpunit
48+
run: ./vendor/bin/phpunit

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
}
2020
],
2121
"require": {
22-
"php": "^7.3",
22+
"php": "^7.3 | ^8.0",
2323
"illuminate/database": "^7.0 | ^8.0",
2424
"illuminate/support": "^7.0 | ^8.0"
2525
},

0 commit comments

Comments
 (0)