-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
89 lines (89 loc) · 2.7 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
{
"name": "leuchtfeuer/auth0",
"description": "Auth0 is the solution you need for web, mobile, IoT, and internal applications. Loved by developers and trusted by enterprises.",
"license": "GPL-2.0-or-later",
"type": "typo3-cms-extension",
"keywords": [
"TYPO3",
"Auth0",
"SSO",
"Login",
"User"
],
"authors": [
{
"name": "Florian Wessels",
"email": "[email protected]",
"homepage": "https://www.Leuchtfeuer.com",
"role": "Developer"
},
{
"name": "Max Rösch",
"email": "[email protected]",
"homepage": "https://www.Leuchtfeuer.com",
"role": "Developer"
},
{
"name": "Yassine Abid",
"email": "[email protected]",
"homepage": "https://www.Leuchtfeuer.com",
"role": "Developer"
}
],
"homepage": "https://www.Leuchtfeuer.com",
"require": {
"auth0/auth0-php": "^8.1",
"lcobucci/jwt": "^4.1",
"symfony/http-foundation": "^5.4 || ^6.2",
"symfony/property-access": "^4.4 || ^5.4 || ^6.2",
"symfony/property-info": "^5.4 || ^6.3",
"symfony/serializer": "^4.4 || ^5.4 || ^6.2",
"typo3/cms-backend": "^11.5.7 || ^12.4",
"typo3/cms-core": "^11.5.7 || ^12.4",
"typo3/cms-extbase": "^11.5.7 || ^12.4",
"typo3/cms-extensionmanager": "^11.5.7 || ^12.4",
"typo3/cms-fluid": "^11.5.7 || ^12.4",
"typo3/cms-frontend": "^11.5.7 || ^12.4"
},
"replace": {
"bitmotion/auth0": "self.version",
"typo3-ter/auth0": "self.version"
},
"suggest": {
"typo3/cms-scheduler": "TYPO3 Scheduler"
},
"autoload": {
"psr-4": {
"Leuchtfeuer\\Auth0\\": "Classes/"
}
},
"config": {
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true,
"php-http/discovery": true
},
"bin-dir": ".Build/bin",
"platform": {
"php": "7.4"
},
"vendor-dir": ".Build/vendor"
},
"extra": {
"typo3/cms": {
"extension-key": "auth0",
"web-dir": ".Build/web"
}
},
"scripts": {
"post-autoload-dump": [
"TYPO3\\TestingFramework\\Composer\\ExtensionTestEnvironment::prepare",
"mkdir -p .Build/web/typo3conf/ext/",
"[ -L .Build/web/typo3conf/ext/auth0 ] || ln -snvf ../../../../. .Build/web/typo3conf/ext/auth0"
]
},
"require-dev": {
"ssch/typo3-rector": "^1.3",
"friendsofphp/php-cs-fixer": "^3.25"
}
}