-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 1.08 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
{
"name": "abivia/hydration",
"description": "Support for creating complex nested class structures from JSON/YAML objects.",
"keywords": ["config", "configuration", "deserialization", "hydration", "json", "yaml"],
"homepage": "https://github.com/abivia/hydration",
"type": "library",
"require": {
"php": ">=7.4|^8.0",
"ext-json": "*"
},
"suggest": {
"symfony/yaml": "For parsing YAML source files"
},
"require-dev": {
"phpunit/phpunit": "^9.0-stable",
"symfony/yaml": "^5.1@dev",
"vimeo/psalm": "^4.10.0"
},
"license": "MIT",
"authors": [
{
"name": "Alan Langford",
"email": "[email protected]"
}
],
"scripts": {
"psalm": "vendor/bin/psalm --config=psalm.xml"
},
"support": {
"issues": "https://github.com/abivia/hydration/issues"
},
"autoload": {
"psr-4": { "Abivia\\Hydration\\": "src/hydration"}
},
"autoload-dev": {
"classmap": [
"src/"
]
},
"minimum-stability": "dev"
}