-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
44 lines (44 loc) · 1.09 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
{
"name": "ichhabrecht/devtools",
"type": "typo3-cms-extension",
"description": "Adds nice developer tools to your TYPO3 installation",
"keywords": [
"TYPO3",
"developer",
"tools"
],
"homepage": "https://github.com/IchHabRecht/devtools",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Nicole Cordes",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^5.6 || >= 7.0 < 7.3",
"typo3/cms-core": "^7.6 || ^8.7 || ^9.5"
},
"autoload": {
"psr-4": {
"IchHabRecht\\Devtools\\": "Classes/"
}
},
"replace": {
"devtools": "self.version",
"typo3-ter/devtools": "self.version"
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin"
},
"extra": {
"typo3/cms": {
"extension-key": "devtools",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"app-dir": ".Build",
"web-dir": ".Build/public"
}
}
}