-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
43 lines (43 loc) · 911 Bytes
/
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
{
"name": "studiomitte/brevo",
"type": "typo3-cms-extension",
"description": "Integration of newsletter SaaS solution brevo.com (formally known as sendinblue) into TYPO3 CMS",
"authors": [
{
"name": "Georg Ringer",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/studiomitte/brevo/issues",
"source": "https://github.com/studiomitte/brevo"
},
"homepage": "https://studiomitte.com",
"license": [
"GPL-2.0-or-later"
],
"require": {
"typo3/cms-core": "^11.5||^12.4 || ^13.4",
"typo3/cms-form": "^11.5||^12.4 || ^13.4",
"getbrevo/brevo-php": "^1"
},
"require-dev": {
"typo3/testing-framework": "^6.4",
"phpunit/phpunit": "^8.5.14"
},
"autoload": {
"psr-4": {
"StudioMitte\\Brevo\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"StudioMitte\\Brevo\\Tests\\": "Tests"
}
},
"extra": {
"typo3/cms": {
"extension-key": "brevo"
}
}
}