Skip to content

Commit f37f0c1

Browse files
authored
Merge pull request #201 from laravel/laravel8
[2.x] Support Laravel 8
2 parents cef9cf0 + c4e6af4 commit f37f0c1

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/tests.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,10 @@ jobs:
1414
fail-fast: true
1515
matrix:
1616
php: [7.2, 7.3, 7.4]
17-
laravel: [^6.0, ^7.0]
17+
laravel: [^6.0, ^7.0, ^8.0]
18+
exclude:
19+
- php: 7.2
20+
laravel: ^8.0
1821

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

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@
1212
"require": {
1313
"php": "^7.2",
1414
"guzzlehttp/guzzle": "^6.0|^7.0",
15-
"illuminate/support": "^6.0|^7.0",
15+
"illuminate/support": "^6.0|^7.0|^8.0",
1616
"symfony/console": "^4.3|^5.0",
1717
"symfony/process": "^4.3|^5.0"
1818
},
1919
"require-dev": {
20-
"phpunit/phpunit": "^8.0"
20+
"phpunit/phpunit": "^8.0|^9.0"
2121
},
2222
"suggest": {
2323
"ext-posix": "Required to determine the System user on Unix systems."

0 commit comments

Comments
 (0)