-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (40 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
{
"name": "davikingcode/laravel-alexv2api",
"description": ":description",
"license": "license",
"authors": [
{
"name": "Da Viking Code",
"email": "[email protected]",
"homepage": "author homepage"
}
],
"homepage": "https://github.com/davikingcode/alexv2api",
"keywords": ["DaVikingCode", "Laravel", "AlexV2Api"],
"require": {
"spatie/laravel-permission": "^3.0",
"guzzlehttp/guzzle": "^7.2"
},
"require-dev": {
},
"autoload": {
"psr-4": {
"DaVikingCode\\LaravelAlexV2Api\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DaVikingCode\\LaravelAlexV2Api\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"DaVikingCode\\LaravelAlexV2Api\\LaravelAlexV2ApiServiceProvider"
],
"aliases": {
"LaravelAlexV2Api": "DaVikingCode\\LaravelAlexV2Api\\Facades\\LaravelAlexV2Api"
}
}
}
}