Skip to content

Commit

Permalink
Merge pull request #25 from mateusjunges/mateusjunges-patch-1
Browse files Browse the repository at this point in the history
Tests for php 8
  • Loading branch information
mateusjunges authored Jan 20, 2021
2 parents 74cde99 + 9e87c4d commit 299fd78
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ jobs:

strategy:
matrix:
php: [7.4]
laravel: [8.*, 7.*, 6.*, 5.8.*]
php: [7.4, 8.0]
laravel: [8.*, 7.*, 6.*]
dependency-version: [prefer-stable]
include:
- laravel: 8.*
Expand All @@ -18,8 +18,6 @@ jobs:
testbench: 5.*
- laravel: 6.*
testbench: 4.*
- laravel: 5.8.*
testbench: 3.8.*

name: CI - PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} - Testbench ${{ matrix.testbench }} (${{ matrix.dependency-version }})

Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to `mateusjunges/laravel-invite-codes` will be documented in this file.

## 1.4.0 2020-01-20
- Add support for PHP v8
- Drop support for Laravel 5.8

## 1.3.0 2020-09-08
- Add support for laravel v8.x
- Drop support for Larvel v5.6 and v5.7
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@
],
"require": {
"php": "^7.4|^8.0",
"illuminate/auth": "^5.8|^6.0|^7.0|^8.0",
"illuminate/support": "^5.8|^6.0|^7.0|^8.0",
"illuminate/database": "^5.8|^6.0|^7.0|^8.0"
"illuminate/auth": "^6.0|^7.0|^8.0",
"illuminate/support": "^6.0|^7.0|^8.0",
"illuminate/database": "^6.0|^7.0|^8.0"
},
"require-dev": {
"orchestra/testbench": "^3.8|^4.0|^5.0",
"orchestra/testbench": "^4.0|^5.0",
"phpunit/phpunit": "^7.0|^8.0|^9.0",
"predis/predis": "^1.1"
},
Expand Down

0 comments on commit 299fd78

Please sign in to comment.