-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 953 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
46
47
{
"name": "alexander-nitsche/typo3-nginx-connector",
"description": "Nginx cache connector for TYPO3",
"type": "typo3-cms-extension",
"keywords": [
"TYPO3",
"extension",
"nginx",
"cache",
"connector"
],
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Alexander Nitsche",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"typo3/cms-core": "^10.4.0"
},
"require-dev": {},
"conflict": {
"qbus/nginx-cache": "*"
},
"suggest": {},
"autoload": {
"psr-4": {
"AlexanderNitsche\\NginxConnector\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"AlexanderNitsche\\NginxConnector\\Tests\\": "Tests"
}
},
"replace": {
"alexander-nitsche/nginx-connector": "self.version",
"typo3-ter/nginx-connector": "self.version"
},
"extra": {
"typo3/cms": {
"extension-key": "nginx_connector"
}
}
}