-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
63 lines (63 loc) · 1.74 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
57
58
59
60
61
62
63
{
"name": "oneup/contao-mailchimp",
"type": "contao-bundle",
"description": "This extension connects a Contao installation with MailChimp.",
"keywords": [
"contao",
"mailchimp",
"email",
"marketing",
"services"
],
"homepage": "https://1up.io",
"license": "MIT",
"authors": [
{
"name": "David Greminger",
"email": "[email protected]",
"homepage": "https://1up.io",
"role": "Developer"
}
],
"require": {
"ext-json": "*",
"php": "^7.4 || ^8.0",
"codefog/contao-haste": "^5.0",
"contao/core-bundle": "^4.13 || ^5.0",
"oneup/mailchimp-api-v3": "^2.7",
"patchwork/utf8": "^1.3",
"symfony/event-dispatcher": "^4.4 || ^5.4 || ^6.4 || ^7.0"
},
"require-dev": {
"contao/manager-plugin": "^2.0",
"friendsofphp/php-cs-fixer": "^3.9",
"phpunit/phpunit": "^8.4"
},
"extra": {
"contao-manager-plugin": "Oneup\\Contao\\MailChimpBundle\\ContaoManager\\Plugin"
},
"autoload": {
"psr-4": {
"Oneup\\Contao\\MailChimpBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Oneup\\Contao\\Tests\\": "tests"
}
},
"prefer-stable": true,
"support": {
"email": "[email protected]",
"issues": "https://github.com/1up-lab/contao-mailchimp/issues",
"source": "https://github.com/1up-lab/contao-mailchimp"
},
"config": {
"allow-plugins": {
"contao-components/installer": true,
"contao-community-alliance/composer-plugin": true,
"contao/manager-plugin": true,
"php-http/discovery": false
}
}
}