forked from ergebnis/json-normalizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
68 lines (68 loc) · 1.79 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "ergebnis/json-normalizer",
"description": "Provides generic and vendor-specific normalizers for normalizing JSON documents.",
"license": "MIT",
"type": "library",
"keywords": [
"json",
"normalizer"
],
"authors": [
{
"name": "Andreas Möller",
"email": "[email protected]"
}
],
"homepage": "https://github.com/ergebnis/json-normalizer",
"support": {
"issues": "https://github.com/ergebnis/json-normalizer/issues",
"source": "https://github.com/ergebnis/json-normalizer"
},
"require": {
"php": "~8.0.0 || ~8.1.0 || ~8.2.0",
"ext-json": "*",
"ergebnis/json": "^1.0.1",
"ergebnis/json-pointer": "^3.2.0",
"ergebnis/json-printer": "^3.3.0",
"ergebnis/json-schema-validator": "^4.0.0",
"justinrainbow/json-schema": "^5.2.12"
},
"require-dev": {
"composer/semver": "^3.2.1",
"ergebnis/data-provider": "^1.3.0",
"ergebnis/license": "^2.1.0",
"ergebnis/php-cs-fixer-config": "^5.5.0",
"fakerphp/faker": "^1.21.0",
"infection/infection": "~0.26.19",
"phpunit/phpunit": "^9.6.7",
"psalm/plugin-phpunit": "~0.18.4",
"rector/rector": "~0.15.24",
"symfony/filesystem": "^6.0.19",
"symfony/finder": "^6.0.19",
"vimeo/psalm": "^5.9.0"
},
"suggest": {
"composer/semver": "If you want to use ComposerJsonNormalizer or VersionConstraintNormalizer"
},
"autoload": {
"psr-4": {
"Ergebnis\\Json\\Normalizer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ergebnis\\Json\\Normalizer\\Test\\": "test/"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"infection/extension-installer": true
},
"platform": {
"php": "8.0.25"
},
"preferred-install": "dist",
"sort-packages": true
}
}