-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathcomposer.json
30 lines (30 loc) · 865 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
{
"name": "kevinzheng/laravel-switchable-mail",
"description": "For Laravel to support multiple and switchable on runtime mail drivers.",
"homepage": "https://github.com/kevinzheng/laravel-switchable-mail",
"support": {
"issues": "https://github.com/kevinzheng/laravel-switchable-mail/issues",
"source": "https://github.com/kevinzheng/laravel-switchable-mail"
},
"require": {
"php": ">=5.6.4",
"illuminate/mail": "5.3.*"
},
"license": "MIT",
"authors": [
{
"name": "Kevin Zheng",
"email": "[email protected]"
},
{
"name": "Elf Sundae",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"KVZ\\Laravel\\SwitchableMail\\": "src/"
}
}
}