This repository has been archived by the owner on Apr 16, 2020. It is now read-only.
forked from tehplague/swiftmailer-mailgun-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.48 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
{
"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+",
"authors" :
[
{
"name" : "Christian Spoo",
"email" : "[email protected]",
"homepage" : "http://www.christian-spoo.info/",
"role" : "Developer"
}
],
"minimum-stability" : "stable",
"require": {
"php": "^5.5 || ^7.0",
"swiftmailer/swiftmailer": "^5.0",
"mailgun/mailgun-php": "^2.3",
"symfony/dependency-injection": "^2.7 || ^3.0"
},
"require-dev": {
"phpunit/phpunit": "^4.8 || ^5.7",
"matthiasnoback/symfony-dependency-injection-test": "^1.0",
"nyholm/symfony-bundle-test": "^1.0",
"symfony/swiftmailer-bundle": "^2.5.1",
"symfony/symfony": "^2.7 || ^3.0",
"php-http/guzzle6-adapter": "^1.0",
"guzzlehttp/psr7": "^1.4"
},
"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/phpunit",
"test-ci": "vendor/bin/phpunit --coverage-text --coverage-clover=build/coverage.xml"
}
}