-
Notifications
You must be signed in to change notification settings - Fork 18
/
composer.json
64 lines (64 loc) · 1.32 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
{
"name": "mfc/oauth2",
"type": "typo3-cms-extension",
"description": "Generic OAuth2 authentication and authorization for TYPO3 CMS",
"homepage": "https://www.marketing-factory.de",
"authors": [
{
"name": "Christian Hellmund",
"role": "Developer"
},
{
"name": "Sebastian Klein",
"role": "Developer"
},
{
"name": "Simon Schmidt",
"role": "Developer"
},
{
"name": "Karoline Steinfatt",
"role": "Maintainer"
},
{
"name": "Christian Spoo",
"role": "Developer"
}
],
"license": [
"GPL-2.0-or-later"
],
"keywords": [
"TYPO3 CMS",
"OAuth"
],
"autoload": {
"psr-4": {
"Mfc\\OAuth2\\": "Classes/"
}
},
"require": {
"php": "^7.4 || ^8.1",
"league/oauth2-client": "^2.6",
"m4tthumphrey/php-gitlab-api": "^11.13.0",
"omines/oauth2-gitlab": "^3.4",
"php-http/guzzle7-adapter": "^1.0",
"psr/http-factory": "^1.0",
"typo3/cms-core": "^12.2 || ^13.0 || dev-main",
"typo3/cms-beuser": "^12.2 || ^13.0 || dev-main"
},
"extra": {
"branch-alias": {
"dev-latest": "3.x-dev"
},
"typo3/cms": {
"extension-key": "oauth2"
}
},
"config": {
"allow-plugins": {
"typo3/cms-composer-installers": false,
"typo3/class-alias-loader": false
}
}
}