forked from BastianBalthasarBux/tt_address
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·41 lines (41 loc) · 873 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
{
"name": "friendsoftypo3/tt-address",
"type": "typo3-cms-extension",
"description": "Displays a list of addresses from an address table on the page.",
"keywords": [
"TYPO3",
"extension",
"addresses"
],
"homepage": "https://github.com/FriendsOfTYPO3/tt_address",
"authors": [
{
"name": "tt_address Development Team",
"role": "Developer"
}
],
"license": "GPL-2.0-or-later",
"require": {
"typo3/cms-core": ">=7.6",
"php": ">=5.5"
},
"extra": {
"typo3/class-alias-loader": {
"class-alias-maps": [
"Migrations/Code/ClassAliasMap.php"
]
}
},
"autoload": {
"psr-4": {
"TYPO3\\TtAddress\\": "Classes"
}
},
"replace": {
"tt_address": "self.version",
"typo3-ter/tt-address": "self.version"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.4"
}
}