forked from auth0/laravel-auth0
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
82 lines (82 loc) · 1.65 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "auth0/login",
"description": "Laravel plugin that helps authenticate with the Auth0 service",
"type": "library",
"keywords": [
"laravel",
"auth0",
"authentication",
"authorization",
"login",
"auth",
"jwt",
"json web token",
"jwk",
"json web key",
"oauth",
"openid",
"secure",
"protect",
"api"
],
"homepage": "https://github.com/auth0/laravel-auth0",
"license": "MIT",
"authors": [
{
"name": "Auth0",
"email": "[email protected]",
"homepage": "https://auth0.com/"
}
],
"require": {
"php": "^7.3 || ^8.0",
"ext-json": "*",
"ext-openssl": "*",
"ext-filter": "*",
"ext-mbstring": "*",
"auth0/auth0-php": "^7.9",
"illuminate/support": " ^6.0 || ^7.0 || ^8.0",
"illuminate/contracts": "^6.0 || ^7.0 || ^8.0"
},
"require-dev": {
"nunomaduro/phpinsights": "^1.13 || ^2.0",
"phpunit/phpunit": "^9.5",
"orchestra/testbench": "^4.0 || ^5.0",
"nunomaduro/larastan": "^0.7"
},
"conflict": {
"lcobucci/jwt": "*"
},
"autoload": {
"classmap": [
"src/controllers",
"src/facade"
],
"psr-0": {
"Auth0\\Login\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Auth0\\Login\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Auth0\\Login\\LoginServiceProvider"
],
"aliases": {
"Auth0": "Auth0\\Login\\Facade\\Auth0"
}
}
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"scripts": {
"format": "docker compose run --rm format",
"tests": "docker compose run --rm tests"
}
}