-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
composer.json
89 lines (89 loc) · 2.43 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "ergebnis/composer-normalize",
"description": "Provides a composer plugin for normalizing composer.json.",
"license": "MIT",
"type": "composer-plugin",
"keywords": [
"composer",
"normalizer",
"normalize",
"plugin"
],
"authors": [
{
"name": "Andreas Möller",
"email": "am@localheinz.com",
"homepage": "https://localheinz.com"
}
],
"homepage": "https://github.com/ergebnis/composer-normalize",
"support": {
"issues": "https://github.com/ergebnis/composer-normalize/issues",
"source": "https://github.com/ergebnis/composer-normalize",
"security": "https://github.com/ergebnis/composer-normalize/blob/main/.github/SECURITY.md"
},
"require": {
"php": "~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
"ext-json": "*",
"composer-plugin-api": "^2.0.0",
"ergebnis/json": "^1.4.0",
"ergebnis/json-normalizer": "^4.8.0",
"ergebnis/json-printer": "^3.7.0",
"justinrainbow/json-schema": "^5.2.12 || ^6.0.0",
"localheinz/diff": "^1.2.0"
},
"require-dev": {
"composer/composer": "^2.8.3",
"ergebnis/license": "^2.6.0",
"ergebnis/php-cs-fixer-config": "^6.39.0",
"ergebnis/phpunit-slow-test-detector": "^2.17.0",
"fakerphp/faker": "^1.24.1",
"infection/infection": "~0.26.6",
"phpstan/extension-installer": "^1.4.3",
"phpstan/phpstan": "^1.12.12",
"phpstan/phpstan-deprecation-rules": "^1.2.1",
"phpstan/phpstan-phpunit": "^1.4.1",
"phpstan/phpstan-strict-rules": "^1.6.1",
"phpunit/phpunit": "^9.6.20",
"rector/rector": "^1.2.10",
"symfony/filesystem": "^5.4.41"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Ergebnis\\Composer\\Normalize\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ergebnis\\Composer\\Normalize\\Test\\": "test/"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"infection/extension-installer": true,
"phpstan/extension-installer": true
},
"audit": {
"abandoned": "report"
},
"platform": {
"php": "7.4.33"
},
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-main": "2.44-dev"
},
"class": "Ergebnis\\Composer\\Normalize\\NormalizePlugin",
"composer-normalize": {
"indent-size": 2,
"indent-style": "space"
},
"plugin-optional": true
}
}