-
Notifications
You must be signed in to change notification settings - Fork 49
/
composer.json
48 lines (48 loc) · 1.73 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
{
"name" : "cspoo/swiftmailer-mailgun-bundle",
"type" : "symfony-bundle",
"description" : "Swiftmailer Mailgun bundle",
"keywords" : ["E-Mail", "Swiftmailer", "mailgun"],
"homepage" : "https://github.com/tehplague/swiftmailer-mailgun-bundle",
"license" : "GPL-2.0-or-later",
"authors" :
[
{
"name" : "Christian Spoo",
"email" : "mail@christian-spoo.info",
"homepage" : "http://www.christian-spoo.info/",
"role" : "Developer"
}
],
"minimum-stability" : "stable",
"require": {
"php": "^7.3 || ^8.0",
"swiftmailer/swiftmailer": "^6.0",
"mailgun/mailgun-php": "^3.0",
"symfony/config": "^3.3 || ^4.0 || ^5.0",
"symfony/dependency-injection": "^3.3 || ^4.0 || ^5.0",
"symfony/http-kernel": "^3.3 || ^4.0 || ^5.0",
"psr/log": "^1.1"
},
"require-dev": {
"symfony/phpunit-bridge": "^4.0 || ^5.0",
"matthiasnoback/symfony-dependency-injection-test": "^2.3.1 || ^4.0",
"nyholm/symfony-bundle-test": "^1.4",
"symfony/swiftmailer-bundle": "^2.5.1 || ^3.2",
"php-http/curl-client": "^2.0",
"laminas/laminas-diactoros": "^2.0",
"symfony/framework-bundle": "^3.3 || ^4.0 ||^5.0",
"doctrine/annotations": "^1.3"
},
"suggest": {
"azine/mailgunwebhooks-bundle": "Allows to handle Mailgun event webhooks",
"php-http/httplug-bundle": "To manage your http clients"
},
"autoload": {
"psr-4": { "cspoo\\Swiftmailer\\MailgunBundle\\": "" }
},
"scripts": {
"test": "vendor/bin/simple-phpunit",
"test-ci": "vendor/bin/simple-phpunit --coverage-text --coverage-clover=build/coverage.xml"
}
}