Skip to content
This repository was archived by the owner on Jan 27, 2023. It is now read-only.

Commit 1d0b8e5

Browse files
authored
Merge pull request #23 from CraftLogan/Laravel-8-update
Add support for Laravel 8 and require PHP 7.3 or greater.
2 parents b288aa9 + 3b6ef63 commit 1d0b8e5

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

.github/workflows/run-tests.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,12 @@ jobs:
1212
strategy:
1313
fail-fast: true
1414
matrix:
15-
php: [7.4, 7.3, 7.2]
16-
laravel: [7.*, 6.*]
15+
php: [7.4, 7.3]
16+
laravel: [8.*, 7.*, 6.*]
1717
dependency-version: [prefer-lowest, prefer-stable]
1818
include:
19+
- laravel: 8.*
20+
testbench: 6.*
1921
- laravel: 7.*
2022
testbench: 5.*
2123
- laravel: 6.*
@@ -46,3 +48,4 @@ jobs:
4648
composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction --no-suggest
4749
- name: Execute tests
4850
run: vendor/bin/phpunit
51+

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^7.1",
20-
"illuminate/support": "^6|^7"
19+
"php": "^7.3",
20+
"illuminate/support": "^6|^7|^8"
2121
},
2222
"require-dev": {
23-
"orchestra/testbench": "^4.0|^5.0",
24-
"phpunit/phpunit": "^8.0"
23+
"orchestra/testbench": "^4.0|^5.0|^6.0",
24+
"phpunit/phpunit": "^8.0|^9.0"
2525
},
2626
"autoload": {
2727
"psr-4": {

0 commit comments

Comments
 (0)