-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 969 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
{
"name": "cwd/bounce-detection",
"type": "library",
"description": "Detect if a mail (string) is bounce mail - soft and hard bounce support",
"keywords": ["email", "bounce", "smtp"],
"license": "MIT",
"support": {
"issues": "https://github.com/cwd/bounce-detection/issues"
},
"minimum-stability": "stable",
"authors": [
{
"name": "Ludwig Ruderstaller",
"email": "[email protected]"
}
],
"require": {
"php": "^5.5.0 || ^7.0",
"ext-mailparse": "*",
"symfony/yaml": "^3.1",
"php-mime-mail-parser/php-mime-mail-parser": "^2.5"
},
"require-dev": {
"phpunit/phpunit": "~4.8",
"symfony/var-dumper": "^3.1"
},
"autoload": {
"psr-4": {
"Cwd\\BounceDetection\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Cwd\\BounceDetection\\Tests\\": "tests/"
}
}
}