forked from supseven-at/mailchimp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
56 lines (56 loc) · 1.26 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
55
56
{
"name": "sup7even/mailchimp",
"type": "typo3-cms-extension",
"description": "Simple MailChimp integration to let users register to a specific list",
"keywords": [
"TYPO3",
"extension",
"mailchimp",
"newsletter"
],
"homepage": "https://ringer.it",
"authors": [
{
"name": "Georg Ringer",
"role": "Developer",
"homepage": "https://ringer.it"
}
],
"license": ["GPL-2.0-or-later"],
"require": {
"typo3/cms-core": "^10.4 || ^11.5",
"drewm/mailchimp-api": "^2",
"helhum/typoscript-rendering": "^2"
},
"autoload": {
"psr-4": {
"Sup7even\\Mailchimp\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"Sup7even\\Mailchimp\\Tests\\": "Tests"
}
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true
}
},
"scripts": {
"post-autoload-dump": [
"mkdir -p .Build/Web/typo3conf/ext/",
"[ -L .Build/Web/typo3conf/ext/mailchimp ] || ln -snvf ../../../../. .Build/Web/typo3conf/ext/mailchimp"
]
},
"extra": {
"typo3/cms": {
"extension-key": "mailchimp",
"app-dir": ".Build",
"web-dir": ".Build/web"
}
}
}