-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
44 lines (44 loc) · 1.22 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
{
"name" : "salaros/is-biz-mail",
"license" : "MIT",
"description" : "isBizMail tells you whether a given email address is free (gmail.com, yahoo.es, yandex.ru etc) or not",
"homepage" : "https://github.com/salaros/is-biz-mail",
"type" : "library",
"keywords": [
"email",
"address",
"checker",
"free",
"domain",
"blacklist"
],
"authors": [
{
"name" : "Zhmayev Yaroslav",
"email" : "salaros@salaros.com",
"homepage" : "http://salaros.com",
"role" : "Developer"
}
],
"autoload": {
"psr-4": {
"Salaros\\Email\\": "src"
}
},
"require": {
"php" : "~5.4 || ~7.0 || ~8.0"
},
"require-dev": {
"phpunit/phpunit" : "^4.8 || ^5.7 || ^6.5 || ^7.0 || ^8.0 || ^9.0",
"php-coveralls/php-coveralls" : "^1 || ^2",
"symplify/easy-ci" : "^11.0"
},
"scripts": {
"test": [
"./vendor/bin/phpunit"
],
"coverage": [
"./vendor/bin/php-coveralls -v -n"
]
}
}