forked from FriendsOfTYPO3/tt_address
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·54 lines (54 loc) · 1.06 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
51
52
53
54
{
"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": "^10.4.6 || ^11.1",
"php": ">=7.2"
},
"extra": {
"typo3/cms": {
"extension-key": "tt_address",
"app-dir": ".Build",
"web-dir": ".Build/public"
}
},
"autoload": {
"psr-4": {
"FriendsOfTYPO3\\TtAddress\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"FriendsOfTYPO3\\TtAddress\\Tests\\": "Tests"
}
},
"replace": {
"typo3-ter/tt-address": "self.version"
},
"require-dev": {
"php-coveralls/php-coveralls": "^2.1"
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin"
},
"scripts": {
"post-autoload-dump": [
"TYPO3\\TestingFramework\\Composer\\ExtensionTestEnvironment::prepare"
]
}
}