-
Notifications
You must be signed in to change notification settings - Fork 27
/
composer.json
41 lines (41 loc) · 942 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "codecasts/laravel-jwt",
"description": "Dead simple JWT Auth Provider for Laravel 5.4+",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Diego Hernandes",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Codecasts\\Auth\\JWT\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"require": {
"php": ">=7.0.0",
"ext-openssl": "*",
"lcobucci/jwt": "^3.2",
"illuminate/support": ">=5.4.0"
},
"require-dev": {
"orchestra/testbench": "^3.4",
"phpunit/phpunit": "^6.1",
"mockery/mockery": "^0.9.9"
},
"extra": {
"laravel": {
"providers": [
"Codecasts\\Auth\\JWT\\ServiceProvider"
]
}
}
}