-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
67 lines (67 loc) · 2.12 KB
/
composer.json
File metadata and controls
67 lines (67 loc) · 2.12 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "loilo/jsonpath",
"description": "Runs RFC9535 compatible JSONPath queries against a data set",
"type": "library",
"version": "0.3.1",
"license": "MIT",
"authors": [
{
"name": "Florian Reuschel",
"email": "florian@loilo.de"
}
],
"require": {
"php": "^8.0"
},
"require-dev": {
"pestphp/pest": "^3.0",
"phpstan/phpstan": "^2.1",
"squizlabs/php_codesniffer": "^3.6 || ^4.0"
},
"autoload": {
"files": [
"src/comparator/compare-nulls.php",
"src/comparator/compare-arrays.php",
"src/comparator/compare-nodes.php",
"src/comparator/compare-booleans.php",
"src/comparator/compare-objects.php",
"src/comparator/compare-strings.php",
"src/comparator/compare-numbers.php",
"src/parsers/array-slice-selector.php",
"src/parsers/function-extensions.php",
"src/parsers/root.php",
"src/parsers/filter-selector.php",
"src/types/nothing.php",
"src/types/node.php",
"src/types/path-result.php",
"src/types/path-segments-result.php",
"src/PeggyParser.php",
"src/parser.php",
"src/JsonPath.php",
"src/utils/enumerate-node.php",
"src/utils/escape-member-name.php",
"src/utils/is-equal.php",
"src/utils/traverse-descendant.php",
"src/utils/helpers.php",
"src/utils/array.php",
"src/utils/convert-i-regexp-to-php-regexp.php",
"src/functions/function-types.php",
"src/functions/search.php",
"src/functions/value.php",
"src/functions/count.php",
"src/functions/function-definitions.php",
"src/functions/match.php",
"src/functions/length.php",
"src/utils.php"
]
},
"config": {
"sort-packages": true,
"platform": {
"php": "8.2"
},
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}