forked from marketing-factory/oauth2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 941 Bytes
/
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": "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": "Simon Schmidt",
"role": "Developer"
},
{
"name": "Christian Spoo",
"role": "Developer"
},
{
"name": "Karoline Steinfatt",
"role": "Maintainer"
}
],
"license": [
"MIT"
],
"keywords": [
"TYPO3 CMS",
"OAuth"
],
"autoload": {
"psr-4": {
"Mfc\\OAuth2\\": "Classes/"
}
},
"require": {
"php": "^7.2",
"league/oauth2-client": "^2.3",
"m4tthumphrey/php-gitlab-api": "^9.19.2",
"omines/oauth2-gitlab": "^3.1",
"php-http/guzzle6-adapter": "^1.1||^2.0",
"typo3/cms-core": "^8.7||^9.5.23",
"typo3/cms-beuser": "^8.7||^9.5.23"
}
}