-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
57 lines (57 loc) · 1.83 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
{
"name": "numero2/contao-inxmail",
"type": "contao-bundle",
"description": "Adds the possibility to send form data to Inxmail.",
"keywords": ["inxmail", "form", "newsletter", "contacts", "email marketing", "automation", "api"],
"license": "LGPL-3.0-or-later",
"authors": [{
"name": "numero2 - Agentur für digitales Marketing GbR",
"homepage": "https://www.numero2.de"
}
],
"require": {
"contao/core-bundle": "^4.13 || ^5.0",
"doctrine/dbal": "^3.3",
"psr/log": "^1.1 || 2.0 || ^3.0",
"symfony/config": "^5.4 || ^6.4 || ^7.0",
"symfony/dependency-injection": "^5.4 || ^6.4 || ^7.0",
"symfony/http-client-contracts": "^2.4 || ^3.1",
"symfony/http-client": "^5.4 || ^6.4 || ^7.0",
"symfony/http-foundation": "^5.4 || ^6.4 || ^7.0",
"symfony/http-kernel": "^5.4 || ^6.4 || ^7.0",
"symfony/translation-contracts": "^2.3 || ^3.0"
},
"require-dev": {
"contao/manager-plugin": "^2.0",
"shipmonk/composer-dependency-analyser": "^1.4"
},
"conflict": {
"contao/core": "*",
"contao/manager-plugin": "<2.0 || >=3.0"
},
"extra": {
"contao-manager-plugin": "numero2\\InxmailBundle\\ContaoManager\\Plugin"
},
"autoload": {
"psr-4": {
"numero2\\InxmailBundle\\": "src/"
},
"classmap": [
"contao/"
],
"exclude-from-classmap": [
"contao/dca/",
"contao/languages/"
]
},
"scripts": {
"depcheck": "@php vendor/bin/composer-dependency-analyser --config=depcheck.php"
},
"config": {
"allow-plugins": {
"contao-components/installer": false,
"php-http/discovery": false,
"contao/manager-plugin": false
}
}
}