-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathcomposer.json
70 lines (70 loc) · 1.89 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
{
"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",
"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.0",
"ext-json": "*",
"ext-phar": "*",
"composer-runtime-api": "^2.0.0",
"nikic/php-parser": "^4.13.0",
"symfony/console": "^6.0.0",
"webmozart/assert": "^1.9.1",
"webmozart/glob": "^4.4.0"
},
"require-dev": {
"ext-zend-opcache": "*",
"doctrine/coding-standard": "^9.0.0",
"mikey179/vfsstream": "^1.6.10",
"phing/phing": "^2.17.0",
"phpstan/phpstan": "^1.2.0",
"phpunit/phpunit": "^9.5.10",
"roave/infection-static-analysis-plugin": "1.13.x-dev as 1.13.0",
"vimeo/psalm": "^4.15"
},
"config": {
"optimize-autoloader": true,
"sort-packages": 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"
]
}