-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
44 lines (44 loc) · 1.08 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
{
"name": "cronqvist/laravel-api",
"description": "A Laravel package for creating REST APIs. Tightly integrated with Spatie and Laravel Passport",
"keywords": ["laravel-api", "api", "laravel"],
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Jim Cronqvist",
"email": "[email protected]"
}
],
"require" : {
"php": "^7.4|^8.0",
"ext-json": "*",
"laravel/framework": "^8.0|^9.0",
"laravel/passport": "^10.1.0",
"spatie/laravel-permission": "^3.2",
"spatie/laravel-query-builder": "^2.3|^3.0|^4.0|^5.0",
"phpdocumentor/reflection-docblock": "^4.3|^5.0",
"lcobucci/jwt": "^4.0",
"league/oauth2-server": "^8.3.2"
},
"suggest": {
"spatie/laravel-medialibrary": "Required to use Media functionality"
},
"conflict": {
"spatie/laravel-medialibrary": "<9.0.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Cronqvist\\Api\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Cronqvist\\Api\\ApiServiceProvider"
]
}
}
}