forked from zytzagoo/smtp-validate-email
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1.11 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
{
"name": "zytzagoo/smtp-validate-email",
"description": "Perform email address verification via SMTP",
"keywords": [
"smtp",
"validator",
"verify",
"email"
],
"type": "library",
"license": "GPL-3.0+",
"homepage": "https://github.com/zytzagoo/smtp-validate-email",
"support": {
"source": "https://github.com/zytzagoo/smtp-validate-email",
"docs": "https://github.com/zytzagoo/smtp-validate-email",
"issues": "https://github.com/zytzagoo/smtp-validate-email/issues"
},
"authors": [
{
"name": "Tomaš Trkulja [zytzagoo]",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.6"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.4.2",
"phpunit/phpunit": "~4.8|~5.1",
"squizlabs/php_codesniffer": "^3.0",
"wimg/php-compatibility": "^8.0"
},
"autoload": {
"psr-4": {
"SMTPValidateEmail\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"SMTPValidateEmail\\Tests\\": "tests"
}
}
}