-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
33 lines (33 loc) · 864 Bytes
/
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
{
"name": "dvanderburg/lumen-batched-request",
"description": "Service provider for batched requests in Lumen framework (Laravel PHP).",
"homepage": "https://github.com/dvanderburg/lumen-batched-request",
"keywords": ["lumen","laravel","batch"],
"type": "library",
"autoload": {
"psr-4": {
"Dvanderburg\\BatchedRequest\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Dvanderburg\\BatchedRequest\\Test\\": "tests"
}
},
"require": {
"php": ">=7.0",
"laravel/lumen-framework": "5.6.*",
"flow/jsonpath": "^0.4.0"
},
"license": "MIT",
"authors": [
{
"name": "Dave Vanderburg",
"email": "dvanderburg@gmail.com"
}
],
"minimum-stability": "dev",
"require-dev": {
"phpunit/phpunit": "^6.0"
}
}