-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
45 lines (45 loc) · 1.18 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
{
"name": "angellco/auth0",
"description": "Use Auth0 with Craft.",
"type": "craft-plugin",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"auth0",
"sso"
],
"support": {
"docs": "https://github.com/angell-co/auth0/blob/master/README.md",
"issues": "https://github.com/angell-co/auth0/issues"
},
"license": "proprietary",
"authors": [
{
"name": "Angell & Co",
"homepage": "https://angell.io"
}
],
"require": {
"craftcms/cms": "^3.1.0",
"auth0/auth0-php": "^7.0.0"
},
"autoload": {
"psr-4": {
"angellco\\auth0\\": "src/"
}
},
"extra": {
"name": "Auth0",
"handle": "auth0",
"developer": "Angell & Co",
"developerUrl": "https://angell.io",
"documentationUrl": "https://github.com/angell-co/auth0/blob/master/README.md",
"changelogUrl": "https://raw.githubusercontent.com/angell-co/auth0/master/CHANGELOG.md",
"components": {
"auth": "angellco\\auth0\\services\\Auth"
},
"class": "angellco\\auth0\\Auth0"
}
}