-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
63 lines (63 loc) · 1.8 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "web-vision/wv_t3unity",
"type": "typo3-cms-extension",
"description": "TYPO3 part of the Unity extension pack. Adds Templates and classes for basic functionality.",
"homepage": "http://www.web-vision.de",
"license": [
"GPL-2.0+"
],
"authors": [
{
"name": "web-vision GmbH",
"email": "[email protected]"
}
],
"extra": {
"typo3/cms": {
"extension-key": "wv_t3unity",
"web-dir": ".Build/Web",
"app-dir": ".Build"
}
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true,
"helhum/typo3-console-plugin": true
}
},
"require": {
"php": ">= 7.4",
"ext-curl": "*",
"ext-gd": "*",
"ext-json": "*",
"ext-pdo": "*",
"typo3/cms-core": "^10.4 || ^11.0",
"typo3/cms-filelist": "^10.4 || ^11.0",
"typo3/cms-tstemplate": "^10.4 || ^11.0",
"typo3/cms-backend": "^10.4 || ^11.0",
"typo3/cms-frontend": "^10.4 || ^11.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"helhum/typo3-console": "^7.1",
"phpstan/phpstan": "^1.3",
"saschaegerer/phpstan-typo3": "^1.0",
"ssch/typo3-rector": "^1.0",
"symfony/var-dumper": "^5.4",
"typo3/cms-belog": "^11.0",
"typo3/coding-standards": "^0.5"
},
"suggest": {
"b13/masi": "Allowed pages or sys-folder to exclude from page slug"
},
"autoload": {
"psr-4": {
"WebVision\\WvT3unity\\": "Classes"
}
}
}