-
Notifications
You must be signed in to change notification settings - Fork 15
/
composer.json
37 lines (36 loc) · 947 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
{
"name": "friendsoftypo3/mediace",
"type": "typo3-cms-extension",
"description": "Allows to have non-FAL Media Content Elements like Video and Audio, behaves like TYPO3 4.x and TYPO3 6.x, but acts as compatibility layer for TYPO3 CMS 7.",
"homepage": "https://extensions.typo3.org/extension/mediace",
"support": {
"docs": "https://docs.typo3.org/p/friendsoftypo3/mediace/main/en-us/",
"issues": "https://github.com/FriendsOfTYPO3/mediace/issues",
"source": "https://github.com/FriendsOfTYPO3/mediace"
},
"license": ["GPL-2.0+"],
"require": {
"typo3/cms-core": "~7.6.0",
"typo3/cms-frontend": "~7.6.0"
},
"extra": {
"typo3/class-alias-loader": {
"class-alias-maps": [
"Migrations/Code/ClassAliasMap.php"
]
},
"typo3/cms": {
"extension-key": "mediace"
}
},
"autoload": {
"psr-4": {
"FoT3\\Mediace\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"FoT3\\Mediace\\Tests\\": "Tests/"
}
}
}