-
Notifications
You must be signed in to change notification settings - Fork 72
/
composer.json
77 lines (77 loc) · 2.16 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
{
"name": "maglnet/composer-require-checker",
"type": "library",
"description": "CLI tool to analyze composer dependencies and verify that no unknown symbols are used in the sources of a package",
"keywords": [
"composer",
"dependency",
"cli",
"static analysis",
"requirements",
"imports",
"require"
],
"homepage": "https://github.com/maglnet/ComposerRequireChecker",
"license": "MIT",
"authors": [
{
"name": "Marco Pivetta",
"email": "ocramius@gmail.com",
"homepage": "http://ocramius.github.io/"
},
{
"name": "Matthias Glaub",
"email": "magl@magl.net",
"homepage": "http://magl.net"
}
],
"require": {
"php": "~8.2.0 || ~8.3.0 || ~8.4.0",
"ext-phar": "*",
"composer-runtime-api": "^2.0.0",
"nikic/php-parser": "^4.19.4",
"symfony/console": "^6.4.1 || ^7.0.1",
"webmozart/assert": "^1.11.0",
"webmozart/glob": "^4.7.0"
},
"require-dev": {
"ext-zend-opcache": "*",
"doctrine/coding-standard": "^12.0.0",
"phing/phing": "^2.17.4",
"phpstan/phpstan": "^1.12.13",
"phpunit/phpunit": "^10.5.40",
"psalm/plugin-phpunit": "^0.19.0",
"roave/infection-static-analysis-plugin": "^1.35.0",
"spatie/temporary-directory": "^2.2.1",
"vimeo/psalm": "^5.26.1"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"platform": {
"php": "8.2.99"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"infection/extension-installer": true
}
},
"extra": {
"branch-alias": {
"dev-master": "2.1-dev"
}
},
"autoload": {
"psr-4": {
"ComposerRequireChecker\\": "src/ComposerRequireChecker"
}
},
"autoload-dev": {
"psr-4": {
"ComposerRequireCheckerTest\\": "test/ComposerRequireCheckerTest"
}
},
"bin": [
"bin/composer-require-checker"
]
}