-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
46 lines (46 loc) · 1.2 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
{
"name": "nitsan/ns_ext_compatibility",
"type": "typo3-cms-extension",
"description": "Are you in need of a TYPO3 Extension that offers features such as system information reporting, statistical analysis of TYPO3 extensions, downloadable compatibility options, and more? TYPO3 Extensions Compatibility Report, tailored to meet your specific requirements!",
"homepage": "https://t3planet.com/typo3-upgrade-extension-compatibility",
"license": "GPL-2.0+",
"keywords": [
"TYPO3",
"extension",
"compatibility",
"upgrade",
"report",
"backend",
"version",
"check"
],
"authors": [
{
"name": "T3Planet // NITSAN",
"role": "Developer",
"homepage": "https://www.nitsan.in/"
}
],
"require": {
"typo3/cms-core": "^12.0"
},
"autoload": {
"psr-4": {
"NITSAN\\NsExtCompatibility\\": "Classes"
}
},
"replace": {
"typo3-ter/ns_ext_compatibility": "self.version"
},
"config": {
"vendor-dir": ".Build/vendor/",
"bin-dir": ".Build/bin/"
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/public",
"extension-key": "ns_ext_compatibility"
}
}
}