-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 770 Bytes
/
composer.json
File metadata and controls
34 lines (34 loc) · 770 Bytes
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
{
"name": "bnf/nginx-cache",
"type": "typo3-cms-extension",
"description": "NGINX Cache Manager for TYPO3",
"keywords": [
"TYPO3",
"extension"
],
"homepage": "https://bnf.dev",
"authors": [
{
"name": "Benjamin Franzke",
"email": "ben@bnf.dev",
"role": "Developer",
"homepage": "https://bnf.dev"
}
],
"license": "GPL-2.0+",
"require": {
"typo3/cms-core": "^14.2",
"typo3/cms-frontend": "^14.2",
"typo3/cms-backend": "^14.2"
},
"autoload": {
"psr-4": {
"Bnf\\NginxCache\\": "Classes"
}
},
"extra": {
"typo3/cms": {
"extension-key": "nginx_cache"
}
}
}