-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathcomposer.json
More file actions
64 lines (64 loc) · 1.77 KB
/
Copy pathcomposer.json
File metadata and controls
64 lines (64 loc) · 1.77 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"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": "work.amannurani@gmail.com",
"role": "Software Engineer"
}
],
"require": {
"php": "^8.1",
"illuminate/support": "^10.0|^11.0|^12.0"
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"platform": {
"php": "8.1.0"
}
},
"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": {
"friendsofphp/php-cs-fixer": "^3.74",
"phpstan/phpstan": "^1.12",
"phpunit/phpunit": "^10.5|^11.5",
"orchestra/testbench": "^8.0|^9.0|^10.0"
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse --memory-limit=1G",
"lint": "vendor/bin/php-cs-fixer fix --dry-run --diff --allow-risky=yes",
"test": "vendor/bin/phpunit",
"update-disposable-domains": "php scripts/update-disposable-domains.php"
}
}