-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
76 lines (76 loc) · 2.1 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
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "contao/newsletter-bundle",
"description": "Adds newsletter functionality to Contao",
"license": "LGPL-3.0-or-later",
"type": "contao-bundle",
"authors": [
{
"name": "Leo Feyer",
"homepage": "https://github.com/leofeyer"
},
{
"name": "Contao Community",
"homepage": "https://contao.org/contributors"
}
],
"homepage": "https://contao.org",
"support": {
"issues": "https://github.com/contao/contao/issues",
"forum": "https://community.contao.org",
"source": "https://github.com/contao/newsletter-bundle",
"docs": "https://docs.contao.org"
},
"funding": [
{
"type": "other",
"url": "https://to.contao.org/donate"
}
],
"require": {
"php": "^8.2",
"contao/core-bundle": "self.version",
"symfony/deprecation-contracts": "^3.0",
"symfony/http-kernel": "^6.4 || ^7.0",
"tijsverkoyen/css-to-inline-styles": "^2.0"
},
"require-dev": {
"contao/manager-plugin": "^2.3.1",
"contao/test-case": "self.version",
"phpunit/phpunit": "^9.5",
"symfony/http-client": "^6.4 || ^7.0",
"symfony/phpunit-bridge": "^6.4 || ^7.0"
},
"conflict": {
"contao/core": "*",
"contao/manager-plugin": "<2.0 || >=3.0"
},
"autoload": {
"psr-4": {
"Contao\\NewsletterBundle\\": "src/"
},
"classmap": [
"contao/"
],
"exclude-from-classmap": [
"contao/config/",
"contao/dca/",
"contao/languages/",
"contao/templates/"
]
},
"autoload-dev": {
"psr-4": {
"Contao\\NewsletterBundle\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"contao-components/installer": true,
"contao/manager-plugin": true,
"php-http/discovery": false
}
},
"extra": {
"contao-manager-plugin": "Contao\\NewsletterBundle\\ContaoManager\\Plugin"
}
}