forked from auth0/laravel-auth0
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
96 lines (96 loc) · 2.19 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "auth0/login",
"description": "Auth0 Laravel SDK. Straight-forward and tested methods for implementing authentication, and accessing Auth0's Management API endpoints.",
"license": "MIT",
"type": "library",
"keywords": [
"laravel",
"auth0",
"authentication",
"authorization",
"login",
"auth",
"jwt",
"json web token",
"jwk",
"json web key",
"oauth",
"openid",
"secure",
"protect",
"api"
],
"authors": [
{
"name": "Auth0",
"email": "[email protected]",
"homepage": "https://auth0.com/"
}
],
"homepage": "https://github.com/auth0/laravel-auth0",
"require": {
"php": "^7.4 || ^8.0",
"ext-filter": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"auth0/auth0-php": "^8.0",
"illuminate/contracts": "^8.0 || ^9.0",
"illuminate/http": "^8.0 || ^9.0",
"illuminate/support": "^8.0 || ^9.0",
"spatie/laravel-package-tools": "^1.9"
},
"require-dev": {
"laravel/laravel": "^8.4.4 || ^9.0",
"nunomaduro/larastan": "^1.0",
"nyholm/psr7": "^1.4",
"orchestra/testbench": "6.25.0",
"pestphp/pest": "^1.21",
"pestphp/pest-plugin-laravel": "^1.2",
"phpstan/phpstan": "^1.7",
"phpstan/phpstan-strict-rules": "^1.3",
"phpunit/phpunit": "^9.5",
"rector/rector": "^0.13.6",
"wikimedia/composer-merge-plugin": "^2.0"
},
"autoload": {
"psr-4": {
"Auth0\\Laravel\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Auth0\\Laravel\\Tests\\": "tests"
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"wikimedia/composer-merge-plugin": true
},
"optimize-autoloader": true,
"sort-packages": true
},
"extra": {
"laravel": {
"aliases": {
"Auth0": "Auth0\\Laravel\\Facade\\Auth0"
},
"providers": [
"Auth0\\Laravel\\ServiceProvider"
]
},
"merge-plugin": {
"ignore-duplicates": false,
"include": [
"composer.local.json"
],
"merge-dev": true,
"merge-extra": false,
"merge-extra-deep": false,
"merge-scripts": false,
"recurse": true,
"replace": true
}
}
}