-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
45 lines (45 loc) · 1.61 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
{
"name": "azine/mailgunwebhooks-bundle",
"type": "symfony-bundle",
"description": "Symfony2 Bundle to easily capture feedback from mailgun.com via their provided webhooks",
"keywords": ["Mailgun", "mailgun.com", "transactional email", "email", "webhooks"],
"homepage": "https://github.com/azine/AzineMailgunWebhooksBundle.git",
"license": "MIT",
"authors": [
{
"name": "Azine IT src/Services AG",
"email": "[email protected]"
}
],
"config": {
"process-timeout": 590,
"github-protocols": ["https", "git", "ssh"],
"github-domains": ["github.com"]
},
"require": {
"php": ">=7.0",
"ext-mailparse": "*",
"symfony/framework-bundle": "^4.0|^5.4|^6.3",
"symfony/config": "^4.0|^5.4|^6.3",
"symfony/console": "^4.0|^5.4|^6.3",
"symfony/dependency-injection": "^4.0|^5.4|^6.3",
"symfony/dom-crawler": "^4.0|^5.4|^6.3",
"symfony/event-dispatcher": "^4.0|^5.4|^6.3",
"symfony/http-foundation": "^4.0|^5.4|^6.3",
"symfony/http-kernel": ">=4.4.50,^4.0|^5.4",
"symfony/yaml": "^4.0|^5.4|^6.3",
"symfony/process": "^4.0|^5.4|^6.3",
"symfony/routing": "^4.0|^5.4|^6.3",
"symfony/translation": "^4.0|^5.4|^6.3",
"twig/twig": ">=1.34,^1.0|^2.0|^3.0 ",
"doctrine/orm": "~2.2,>=2.2.3",
"doctrine/common": "~2.2,>=2.2.3"
},
"require-dev": {
"phpunit/phpunit": "^6.0|^7.0|^8.0"
},
"autoload": {
"psr-4": { "Azine\\MailgunWebhooksBundle\\": "src/" }
},
"minimum-stability": "dev"
}