-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (46 loc) · 1.31 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
{
"name": "elandasunshine/jsonscout",
"version": "1.0.0",
"authors": [
{
"email": "[email protected]",
"role": "lead",
"name": "Elanda",
"homepage": "https://github.com/ElandaOfficial"
}
],
"description": "Implements the full JSONPath draft (RFC 9535) for querying JSON documents.",
"homepage": "https://github.com/ElandaSunshine/JSONScout-PHP",
"keywords": [ "json", "jsonpath", "xpath", "query", "php", "parser" ],
"license": "MIT",
"type": "library",
"require": {
"antlr/antlr4-php-runtime": "^0.9",
"technically/callable-reflection": "^0.4",
"ext-mbstring": "*"
},
"require-dev": {
"phpstan/phpstan": "^1.12",
"phpstan/extension-installer":"^1.4",
"phpstan/phpstan-deprecation-rules":"^1.2",
"phpstan/phpstan-strict-rules":"^1.6",
"phpunit/phpunit": "^11"
},
"autoload": {
"psr-4": {
"JsonScout\\": "src/"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": false
},
"platform": {
"php": "8.3"
}
},
"scripts": {
"test": "phpunit"
}
}