-
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.29 KB
/
composer.json
File metadata and controls
49 lines (49 loc) · 1.29 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": "jmespath-community/jmespath",
"description": "Declaratively specify how to extract elements from a JSON document",
"keywords": ["json", "jsonpath"],
"license": "MIT",
"authors": [
{
"name": "Sam Mousa",
"email": "sam@mousa.nl",
"homepage": "https://github.com/sammousa"
}
],
"require": {
"php": ">=8.4",
"ext-mbstring": "*",
"ext-ctype": "*"
},
"require-dev": {
"phpunit/phpunit": "^12",
"jmespath-community/jmespath.test": "*",
"phpstan/phpstan": "^2.1",
"symplify/easy-coding-standard": "^12.5"
},
"autoload-dev": {
"psr-4": {
"JmesPathCommunity\\Tests\\": "tests/"
}
},
"autoload": {
"psr-4": {
"JmesPathCommunity\\": "src/"
}
},
"repositories": [
{
"type": "package",
"package": {
"name": "jmespath-community/jmespath.test",
"version": "1.2.3",
"type": "drupal-theme",
"source": {
"url": "git@github.com:jmespath-community/jmespath.test.git",
"type": "git",
"reference": "main"
}
}
}
]
}