-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1011 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
{
"name": "b13/content-sync",
"type": "typo3-cms-extension",
"description": "Sync Database Tables and Files between two TYPO3 Installations",
"homepage": "https://b13.com",
"license": [
"GPL-2.0-or-later"
],
"require": {
"typo3/cms-backend": "^12.4 || ^13.4",
"typo3/cms-fluid": "^12.4 || ^13.4",
"typo3/cms-core": "^12.4 || ^13.4",
"helhum/typo3-console": "^7.0.0 || ^8.0",
"zumba/json-serializer": "^3.0",
"symfony/process": "^6.0 || ^7.0"
},
"extra": {
"typo3/cms": {
"extension-key": "content_sync"
}
},
"replace": {
"typo3-ter/content-sync": "self.version"
},
"autoload": {
"psr-4": {
"B13\\ContentSync\\": "Classes/"
}
},
"require-dev": {
"typo3/coding-standards": "^0.8.0",
"phpstan/phpstan": "^1.10.16"
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true
}
}
}