Skip to content
This repository has been archived by the owner on Mar 20, 2022. It is now read-only.

Commit

Permalink
Merge pull request #5 from CasperBE/laravel-8
Browse files Browse the repository at this point in the history
Added support for Laravel 8
  • Loading branch information
nickurt authored Sep 13, 2020
2 parents e402eb9 + bfd4958 commit 7da9c1f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,12 @@ jobs:
strategy:
matrix:
php: [7.4, 7.3]
laravel: [7.*, 6.*]
laravel: [8.*, 7.*, 6.*]
dependency-version: [prefer-lowest, prefer-stable]
os: [ubuntu-latest]
include:
- laravel: 8.*
testbench: 6.*
- laravel: 7.*
testbench: 5.*
- laravel: 6.*
Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{
"name": "nickurt/laravel-openprovider",
"description": "OpenProvider for Laravel 6.x/7.x",
"description": "OpenProvider for Laravel 6.x/7.x/8.x",
"keywords": ["openprovider", "laravel"],
"license": "MIT",
"require": {
"php": "^7.2",
"laravel/framework": "^6.0|^7.0",
"laravel/framework": "^6.0|^7.0|^8.0",
"spatie/array-to-xml": "^2.7",
"guzzlehttp/guzzle": "6.*"
"guzzlehttp/guzzle": "6.*|^7.0.1"
},
"require-dev": {
"phpunit/phpunit": "^7.5|^8.3",
"orchestra/testbench": "^4.0|^5.0"
"phpunit/phpunit": "^7.5|^8.3|^9.0",
"orchestra/testbench": "^4.0|^5.0|^6.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 7da9c1f

Please sign in to comment.