-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcomposer.json
50 lines (50 loc) · 1.23 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
{
"name": "friendsoftypo3/compatibility6",
"type": "typo3-cms-extension",
"description": "TYPO3 Core Compatibility Layer for TYPO3 v7 with added functionality previously present in TYPO3 v6.2",
"homepage": "https://extensions.typo3.org/extension/compatibility6/",
"support": {
"issues": "https://github.com/FriendsOfTYPO3/compatibility6/issues",
"source": "https://github.com/FriendsOfTYPO3/compatibility6"
},
"license": "GPL-2.0-or-later",
"require": {
"typo3/cms-core": "*"
},
"require-dev": {
"typo3/cms": "^7.6",
"phpunit/phpunit": "~4.8.0",
"mikey179/vfsstream": "1.6.0",
"friendsofphp/php-cs-fixer": "^2.0"
},
"replace": {
"typo3/cms-compatibility6": "self.version",
"typo3-ter/compatibility6": "self.version"
},
"extra": {
"typo3/class-alias-loader": {
"class-alias-maps": [
"Migrations/Code/ClassAliasMap.php"
]
},
"typo3/cms": {
"extension-key": "compatibility6",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web"
}
},
"autoload": {
"psr-4": {
"TYPO3\\CMS\\Compatibility6\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"TYPO3\\CMS\\Compatibility6\\Tests\\": "Tests/"
}
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin"
}
}