Skip to content

Commit

Permalink
Laravel 8 support
Browse files Browse the repository at this point in the history
  • Loading branch information
SPie authored Apr 29, 2021
1 parent ce3f0a1 commit 9bbd244
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 10 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ language: php

php:
- '7.4'
- '8.0'

notifications:
email:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ you can issue a refresh token. Then this refresh token can be used to create acc

## Requirements
* PHP >= 7.4
* [Laravel Components](https://github.com/laravel/framework) >= 5.4
* [Laravel Components](https://github.com/laravel/framework) >= 7
* [lcobucci/jwt](https://github.com/lcobucci/jwt) ^3.2

## Installation
Expand Down
16 changes: 8 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@
"require": {
"php": ">=7.4.0",
"lcobucci/jwt": "^3.2",
"illuminate/auth": "^7.0",
"illuminate/config": "^7.0",
"illuminate/console": "^7.0",
"illuminate/contracts": "^7.0",
"illuminate/support": "^7.0",
"illuminate/cache": "^7.0",
"vlucas/phpdotenv": "^4.0"
"illuminate/auth": "^7.0 || ^8.0",
"illuminate/config": "^7.0 || ^8.0",
"illuminate/console": "^7.0 || ^8.0",
"illuminate/contracts": "^7.0 || ^8.0",
"illuminate/support": "^7.0 || ^8.0",
"illuminate/cache": "^7.0 || ^8.0",
"vlucas/phpdotenv": "^4.0 || ^5.2"
},
"require-dev": {
"phpunit/phpunit": "~7.0",
"phpunit/phpunit": "^9.0",
"fzaninotto/faker": "^1.8",
"mockery/mockery": "^1.2",
"php-coveralls/php-coveralls": "^2.1"
Expand Down
2 changes: 1 addition & 1 deletion tests/TestHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ protected function getFaker(): Generator
/**
* @return void
*/
protected function tearDown()
protected function tearDown(): void
{
Mockery::close();

Expand Down

0 comments on commit 9bbd244

Please sign in to comment.