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

Commit

Permalink
Merge pull request #23 from CraftLogan/Laravel-8-update
Browse files Browse the repository at this point in the history
Add support for Laravel 8 and require PHP 7.3 or greater.
  • Loading branch information
CraftLogan committed Sep 9, 2020
2 parents b288aa9 + 3b6ef63 commit 1d0b8e5
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,12 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [7.4, 7.3, 7.2]
laravel: [7.*, 6.*]
php: [7.4, 7.3]
laravel: [8.*, 7.*, 6.*]
dependency-version: [prefer-lowest, prefer-stable]
include:
- laravel: 8.*
testbench: 6.*
- laravel: 7.*
testbench: 5.*
- laravel: 6.*
Expand Down Expand Up @@ -46,3 +48,4 @@ jobs:
composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction --no-suggest
- name: Execute tests
run: vendor/bin/phpunit

8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@
}
],
"require": {
"php": "^7.1",
"illuminate/support": "^6|^7"
"php": "^7.3",
"illuminate/support": "^6|^7|^8"
},
"require-dev": {
"orchestra/testbench": "^4.0|^5.0",
"phpunit/phpunit": "^8.0"
"orchestra/testbench": "^4.0|^5.0|^6.0",
"phpunit/phpunit": "^8.0|^9.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 1d0b8e5

Please sign in to comment.