-
Notifications
You must be signed in to change notification settings - Fork 157
/
composer.json
48 lines (48 loc) · 1.25 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
46
47
48
{
"name": "zytzagoo/smtp-validate-email",
"description": "Perform email address verification via SMTP",
"keywords": [
"smtp",
"validator",
"verify",
"email"
],
"type": "library",
"license": "GPL-3.0-or-later",
"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": ">=7.2||>=8"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.0",
"phpcompatibility/php-compatibility": "^9.0"
},
"autoload": {
"psr-4": {
"SMTPValidateEmail\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"SMTPValidateEmail\\Tests\\": "tests"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}