-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 1.01 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
{
"name": "emyoutis/laravel-whitehouse-responder",
"description": "A simple API for generating responses in WhiteHouse standards in Laravel.",
"type": "library",
"keywords": [
"API",
"WhiteHouse",
"Laravel"
],
"license": "MIT",
"authors": [
{
"name": "EmiTis Yousefi",
"email": "emitis89@gmail.com"
}
],
"autoload": {
"psr-4": {
"Emyoutis\\": "src/"
}
},
"require": {
"emyoutis/whitehouse-responder": "1.0",
"laravel/framework": ">=5.1"
},
"extra": {
"laravel": {
"providers": [
"Emyoutis\\LaravelWhiteHouseResponder\\WhiteHouseResponderServiceProvider"
],
"aliases": {
"WhiteHouseResponderResponse": "Emyoutis\\LaravelWhiteHouseResponder\\Facades\\Response",
"WhiteHouseResponderErrors": "Emyoutis\\LaravelWhiteHouseResponder\\Facades\\ErrorsRepository"
}
}
}
}