-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #30 from generationtux/sc-39688/jwt-artisan-upgrad…
…e-our-jwt-package-to-support
- Loading branch information
Showing
7 changed files
with
1,214 additions
and
1,007 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,39 @@ | ||
{ | ||
"name": "generationtux/jwt-artisan", | ||
"description": "JWT auth package for Laravel and Lumen", | ||
"keywords": ["jwt", "auth", "laravel", "lumen"], | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Kyle Ferguson", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Damien Russell", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Thomas Manley", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"minimum-stability": "stable", | ||
"require": { | ||
"firebase/php-jwt": "5.2.0", | ||
"illuminate/http": "^6.0|^7.0|^8.0", | ||
"illuminate/support": "^6.0|^7.0|^8.0" | ||
"name": "generationtux/jwt-artisan", | ||
"description": "JWT auth package for Laravel and Lumen", | ||
"keywords": [ | ||
"jwt", | ||
"auth", | ||
"laravel", | ||
"lumen" | ||
], | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Kyle Ferguson", | ||
"email": "[email protected]" | ||
}, | ||
"require-dev": { | ||
"phpspec/phpspec": "6.2.0" | ||
{ | ||
"name": "Damien Russell", | ||
"email": "[email protected]" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"GenTux\\Jwt\\": "src/" | ||
} | ||
{ | ||
"name": "Thomas Manley", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"minimum-stability": "stable", | ||
"require": { | ||
"firebase/php-jwt": "5.2.0", | ||
"illuminate/http": "^6.0|^7.0|^8.0|^9.0", | ||
"illuminate/support": "^6.0|^7.0|^8.0|^9.0" | ||
}, | ||
"require-dev": { | ||
"phpspec/phpspec": "7.3" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"GenTux\\Jwt\\": "src/" | ||
} | ||
} | ||
} |
Oops, something went wrong.