-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
28 lines (28 loc) · 813 Bytes
/
composer.json
File metadata and controls
28 lines (28 loc) · 813 Bytes
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
{
"name": "scullwm/mailhookbundle",
"type": "symfony-bundle",
"description": "A bundle to catch API webhook from differents mail service",
"keywords": ["symfony", "bundle", "mail", "api", "webhook", "hook", "mandrill", "mailjet", "sparkpost"],
"homepage": "http://github.com/ScullWM/MailHookBundle",
"license": "MIT",
"authors": [
{
"name": "Thomas Perez",
"email": "thomas@scullwm.com"
}
],
"require": {
"php": ">=5.3.9",
"symfony/framework-bundle": "~2.8|~3.0|~4.0|~5.0"
},
"require-dev": {
"atoum/atoum": "dev-master"
},
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-4": { "Swm\\Bundle\\MailHookBundle\\": "" },
"exclude-from-classmap": ["/tests/"]
}
}