forked from squareboat/sneaker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (35 loc) · 1.11 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
{
"name": "squareboat/sneaker",
"description": "An easy way to send emails with stack trace whenever an exception occurs on the server for Laravel Applications.",
"type": "library",
"license": "MIT",
"keywords": ["laravel", "exceptions", "email"],
"authors": [
{
"name": "Amit Gupta",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4.0",
"illuminate/support": "5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|5.8.*|6.0.*",
"illuminate/view": "5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|5.8.*|6.0.*",
"illuminate/config": "5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|5.8.*|6.0.*",
"illuminate/mail": "5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|5.8.*|6.0.*",
"illuminate/log": "5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|5.8.*|6.0.*",
"symfony/debug": "~3.1|~3.2|~4.0"
},
"autoload": {
"psr-4": {
"SquareBoat\\Sneaker\\": "src/"
}
},
"minimum-stability": "dev",
"extra": {
"laravel": {
"providers": [
"SquareBoat\\Sneaker\\SneakerServiceProvider"
]
}
}
}