-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathcomposer.json
50 lines (50 loc) · 1.28 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
49
50
{
"name": "aman00323/emailchecker",
"description": "Laravel package for checking email address is exist or not in real world",
"keywords": [
"email validation",
"disposable email checker",
"php email verifier",
"email exist or not",
"disposable emails",
"email verification"
],
"homepage": "https://github.com/aman00323/email-checker",
"license": "MIT",
"authors": [
{
"name": "Aman Nurani",
"email": "[email protected]",
"role": "Software Engineer"
}
],
"require": {
"php": ">=7.0.0"
},
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Aman\\EmailVerifier\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Aman\\EmailVerifier\\EmailCheckerServiceProvider"
],
"aliases": {
"EmailChecker": "Aman\\EmailVerifier\\EmailCheckerFacade"
}
}
},
"autoload-dev": {
"psr-4": {
"Aman\\EmailVerifier\\Tests\\": "tests"
}
},
"require-dev": {
"phpunit/phpunit": "^7.0|^8.0",
"orchestra/testbench": "~3.6.0|~3.7.0|~3.8.0"
}
}