Skip to content

Commit

Permalink
chore: support Laravel 8
Browse files Browse the repository at this point in the history
  • Loading branch information
ttrig committed Oct 5, 2020
1 parent 79972b5 commit 2a92682
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 4 deletions.
8 changes: 8 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ matrix:
env:
- LARAVEL_VERSION=^7.0
- PHPUNIT_VERSION=^8.5
- php: 7.3
env:
- LARAVEL_VERSION=^8.0
- PHPUNIT_VERSION=^9
- php: 7.4
env:
- LARAVEL_VERSION=5.6.*
Expand All @@ -62,6 +66,10 @@ matrix:
env:
- LARAVEL_VERSION=^7.0
- PHPUNIT_VERSION=^8.5
- php: 7.4
env:
- LARAVEL_VERSION=^8.0
- PHPUNIT_VERSION=^9

before_install:
- composer global require hirak/prestissimo --no-plugins
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]


### Changed
- Support Laravel 8.

## [2.1.0] - 2020-08-03

### Added
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@
},
"require": {
"php": "^7.2.5",
"illuminate/auth": "5.6.*|5.7.*|5.8.*|^6.0|^7.0",
"illuminate/contracts": "5.6.*|5.7.*|5.8.*|^6.0|^7.0",
"illuminate/http": "5.6.*|5.7.*|5.8.*|^6.0|^7.0",
"illuminate/support": "5.6.*|5.7.*|5.8.*|^6.0|^7.0",
"illuminate/auth": "5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0",
"illuminate/contracts": "5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0",
"illuminate/http": "5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0",
"illuminate/support": "5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0",
"lcobucci/jwt": "^3.2"
},
"require-dev": {
Expand Down

0 comments on commit 2a92682

Please sign in to comment.