-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
45 lines (45 loc) · 904 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
{
"name": "pti/pti",
"type": "typo3-cms-extension",
"description": "Prototype Integration",
"authors": [
{
"name": "Hannes Lau",
"email": "[email protected]"
}
],
"require": {
"ext-json": "*",
"php" : "^8.3",
"typo3/cms-core": "^13.4.0"
},
"require-dev": {
"typo3/testing-framework": "^8.0.1"
},
"autoload": {
"psr-4": {
"PrototypeIntegration\\PrototypeIntegration\\": "Classes/"
}
},
"replace": {
"typo3-ter/pti": "self.version"
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true
}
},
"extra": {
"branch-alias": {
"dev-main": "5.0.x-dev"
},
"typo3/cms": {
"extension-key": "pti",
"app-dir": ".Build",
"web-dir": ".Build/public"
}
}
}