forked from ergebnis/composer-normalize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
73 lines (73 loc) · 1.91 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
{
"name": "ergebnis/composer-normalize",
"type": "composer-plugin",
"description": "Provides a composer plugin for normalizing composer.json.",
"keywords": [
"composer",
"normalizer",
"normalize",
"plugin"
],
"homepage": "https://github.com/ergebnis/composer-normalize",
"license": "MIT",
"authors": [
{
"name": "Andreas Möller",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2 || ^8.0",
"composer-plugin-api": "^1.1.0 || ^2.0.0",
"ergebnis/json-normalizer": "^1.0.3",
"ergebnis/json-printer": "^3.1.1",
"justinrainbow/json-schema": "^5.2.11",
"localheinz/diff": "^1.1.1"
},
"require-dev": {
"composer/composer": "^1.10.22 || ^2.0.13",
"ergebnis/license": "^1.1.0",
"ergebnis/php-cs-fixer-config": "^2.14.0",
"ergebnis/phpstan-rules": "~0.15.3",
"ergebnis/test-util": "^1.5.0",
"phpstan/extension-installer": "^1.1.0",
"phpstan/phpstan": "~0.12.99",
"phpstan/phpstan-deprecation-rules": "~0.12.6",
"phpstan/phpstan-phpunit": "~0.12.22",
"phpstan/phpstan-strict-rules": "~0.12.11",
"phpunit/phpunit": "^8.5.21",
"psalm/plugin-phpunit": "~0.16.1",
"symfony/filesystem": "^5.3.4",
"vimeo/psalm": "^4.10.0"
},
"config": {
"platform": {
"php": "7.2.33"
},
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"class": "Ergebnis\\Composer\\Normalize\\NormalizePlugin",
"composer-normalize": {
"indent-size": 2,
"indent-style": "space"
}
},
"autoload": {
"psr-4": {
"Ergebnis\\Composer\\Normalize\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ergebnis\\Composer\\Normalize\\Test\\": "test/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"support": {
"issues": "https://github.com/ergebnis/composer-normalize/issues",
"source": "https://github.com/ergebnis/composer-normalize"
}
}