-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
executable file
·46 lines (46 loc) · 1.15 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
46
{
"name": "d-scribe/laraquick",
"type": "library",
"description": "A collection of classes to be extended/used in laravel applications for quick development",
"license": "MIT",
"keywords": [
"laravel",
"quick",
"api",
"web",
"controller",
"traits"
],
"authors": [
{
"name": "Ezra Obiwale",
"email": "[email protected]",
"homepage": "http://ezraobiwale.com",
"role": "Developer"
}
],
"require": {
"php": ">=8.2",
"guzzlehttp/guzzle": ">=7.7",
"predis/predis": "^2.2",
"spatie/laravel-query-builder": "^5.0"
},
"extra": {
"laravel": {
"providers": [
"Laraquick\\Providers\\ServiceProvider"
]
}
},
"autoload": {
"psr-4": {
"Laraquick\\": "src/"
}
},
"suggest": {
"d-scribe/laravel-db-command": "A laravel command for database operations",
"knuckleswtf/scribe": "Generate API documentation for humans"
},
"minimum-stability": "dev",
"prefer-stable": true
}