-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
34 lines (34 loc) · 892 Bytes
/
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
{
"name": "kouz/laravel-mailgun-email-validation",
"description": "Laravel email validation that uses the Mailgun API for a three-step validation check.",
"keywords": ["mailgun", "laravel", "email", "validation"],
"type": "laravel-package",
"license": "MIT",
"authors": [
{
"name": "Theo Kouzelis",
"email": "[email protected]"
}
],
"require": {
"guzzlehttp/guzzle": "^6.0|^7.0"
},
"require-dev": {
"psr/log": "^1.0",
"orchestra/testbench": "^6.0"
},
"autoload": {
"psr-4": {
"Kouz\\LaravelMailgunValidation\\": "src/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"laravel": {
"providers": [
"Kouz\\LaravelMailgunValidation\\ServiceProvider"
]
}
}
}