-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
60 lines (60 loc) · 1.49 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
{
"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": "^7.4 || ^8.0",
"ext-json": "*",
"ergebnis/json-pointer": "^3.1.0",
"ergebnis/json-printer": "^3.2.0",
"ergebnis/json-schema-validator": "^3.1.0",
"justinrainbow/json-schema": "^5.2.12"
},
"require-dev": {
"ergebnis/data-provider": "^1.2.0",
"ergebnis/license": "^1.2.0",
"ergebnis/php-cs-fixer-config": "^4.6.0",
"fakerphp/faker": "^1.20.0",
"infection/infection": "~0.26.6",
"phpunit/phpunit": "^9.5.21",
"psalm/plugin-phpunit": "~0.17.0",
"vimeo/psalm": "^4.26"
},
"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": "7.4.26"
},
"preferred-install": "dist",
"sort-packages": true
}
}