-
Notifications
You must be signed in to change notification settings - Fork 4
/
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": "estahn/json-query-wrapper",
"type": "library",
"description": "Wrapper for jq, a lightweight and flexible command-line JSON processor",
"keywords": ["jq", "json", "query"],
"homepage": "https://github.com/estahn/json-query-wrapper",
"license": "MIT",
"authors": [
{
"name": "Enrico Stahn",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"require": {
"php": "^7.1|^8",
"symfony/process": "^4|^5"
},
"require-dev": {
"phpunit/phpunit": "^7|^8|^9",
"vimeo/psalm": "4.x-dev"
},
"autoload": {
"psr-4": {
"JsonQueryWrapper\\": "src/JsonQueryWrapper"
}
},
"autoload-dev": {
"psr-4": {
"Test\\JsonQueryWrapper\\": "tests/JsonQueryWrapper"
}
}
}