-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
58 lines (58 loc) · 1.5 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
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "laravie/api",
"description": "A RESTful API package for the Laravel and Lumen frameworks.",
"keywords": ["api", "dingo", "laravel", "restful"],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Jason Lewis",
"email": "[email protected]"
},
{
"name": "Mior Muhammad Zaki",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Dingo\\Api\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Dingo\\Api\\Tests\\": "tests/"
}
},
"require": {
"php": "^7.2 || ^8.0",
"illuminate/routing": "^7.0 || ^8.0 || ^9.0",
"illuminate/support": "^7.0 || ^8.0 || ^9.0",
"laravie/blueprint": "^1.1"
},
"require-dev": {
"laravel/lumen-framework": "^7.0 || ^8.0 || ^9.0",
"league/fractal": "^0.19 || ^0.20",
"mockery/mockery": "^1.3.3 || ^1.4.2",
"orchestra/testbench": "^5.20 || ^6.24.1",
"tymon/jwt-auth": "^1.0"
},
"replace": {
"dingo/api": "*"
},
"suggest": {
"league/fractal": "Transform response using Fractal (^0.19).",
"tymon/jwt-auth": "Protect your API with JSON Web Tokens (^1.0)."
},
"extra": {
"branch": {
"dev-master": "4.x-dev"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev"
}