-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.05 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
{
"name": "ilhanaydinli/laravel-mail-check",
"description": "Check sending email using Laravel mail settings.",
"version": "1.1.5",
"keywords": [
"laravel-mail-check",
"laravel-mail-control"
],
"type": "library",
"require": {
"php": ">=5.6",
"dietercoopman/mailspfchecker": "dev-main",
"illuminate/console": "^5.4|^6.0|^7.0|^8.0|^9.0",
"illuminate/mail": "^5.4|^6.0|^7.0|^8.0|^9.0",
"illuminate/support": "^5.4|^6.0|^7.0|^8.0|^9.0"
},
"license": "MIT",
"autoload": {
"psr-4": {
"IlhanAydinli\\LaravelMailCheck\\": "src/"
}
},
"authors": [
{
"name": "İlhan Aydınlı",
"email": "info@ilhanaydinli.com",
"homepage": "https://ilhanaydinli.com",
"role": "Developer"
}
],
"extra": {
"laravel": {
"providers": [
"IlhanAydinli\\LaravelMailCheck\\MailCheckProvider"
],
"aliases": {
"MailCheck": "IlhanAydinli\\LaravelMailCheck\\Facade\\MailCheck"
}
}
},
"minimum-stability": "dev",
"config": {
"sort-packages": true
}
}