-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.45 KB
/
composer.json
File metadata and controls
49 lines (49 loc) · 1.45 KB
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": "symfony/json-path",
"type": "library",
"description": "Eases JSON navigation using the JSONPath syntax as described in RFC 9535",
"keywords": [],
"homepage": "https://symfony.com",
"license": "MIT",
"authors": [
{
"name": "Alexandre Daubois",
"email": "alex.daubois@gmail.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
"repositories": [
{
"type": "package",
"package": {
"name": "jsonpath-standard/jsonpath-compliance-test-suite",
"version": "2025.11.23",
"source": {
"type": "git",
"url": "https://github.com/jsonpath-standard/jsonpath-compliance-test-suite.git",
"reference": "b9d7153e58711ad38bb8e35ece69c13f4b2f7d63"
}
}
}
],
"require": {
"php": ">=8.4",
"symfony/polyfill-ctype": "^1.8",
"symfony/polyfill-mbstring": "^1.0"
},
"require-dev": {
"symfony/service-contracts": "^2.5|^3",
"symfony/json-streamer": "^7.4|^8.0",
"jsonpath-standard/jsonpath-compliance-test-suite": "*"
},
"autoload": {
"psr-4": { "Symfony\\Component\\JsonPath\\": "" },
"exclude-from-classmap": [
"/Tests/"
]
},
"minimum-stability": "dev"
}