generated from Lctrs/php-library-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
81 lines (81 loc) · 2.21 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
{
"name": "lctrs/psalm-psr-container-plugin",
"description": "Let Psalm understand better psr11 containers",
"license": "MIT",
"type": "psalm-plugin",
"keywords": [
"php",
"code",
"inspection",
"psr",
"psr11",
"container",
"psalm",
"psalm-plugin"
],
"authors": [
{
"name": "Jérôme Parmentier",
"email": "[email protected]"
}
],
"homepage": "https://github.com/Lctrs/psalm-psr-container-plugin",
"support": {
"issues": "https://github.com/Lctrs/psalm-psr-container-plugin/issues",
"source": "https://github.com/Lctrs/psalm-psr-container-plugin"
},
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"ext-simplexml": "*",
"nikic/php-parser": "^4.19.4",
"psr/container": "^1.1.2 || ^2.0.2",
"vimeo/psalm": "^5.26.1"
},
"require-dev": {
"codeception/codeception": "5.1.2",
"codeception/module-asserts": "3.0.0",
"codeception/module-cli": "2.0.1",
"codeception/module-filesystem": "3.0.1",
"doctrine/coding-standard": "12.0.0",
"ergebnis/composer-normalize": "2.44.0",
"ergebnis/license": "2.6.0",
"maglnet/composer-require-checker": "4.7.1",
"phpstan/extension-installer": "1.4.3",
"phpstan/phpstan": "1.12.11",
"phpstan/phpstan-deprecation-rules": "1.2.1",
"phpstan/phpstan-phpunit": "1.4.1",
"phpstan/phpstan-strict-rules": "1.6.1",
"phpunit/phpunit": "10.5.38",
"psalm/plugin-phpunit": "0.19.0",
"weirdan/codeception-psalm-module": "0.14.0"
},
"autoload": {
"psr-4": {
"Lctrs\\PsalmPsrContainerPlugin\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Lctrs\\PsalmPsrContainerPlugin\\Test\\Integration\\": "test/Integration/_support/",
"Lctrs\\PsalmPsrContainerPlugin\\Test\\Unit\\": "test/Unit/"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true
},
"platform": {
"php": "8.1.0"
},
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"psalm": {
"pluginClass": "Lctrs\\PsalmPsrContainerPlugin\\Plugin"
}
}
}