forked from DanielBadura/ComposerRequireChecker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
68 lines (68 loc) · 1.79 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
{
"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": "[email protected]",
"homepage": "http://ocramius.github.io/"
},
{
"name": "Matthias Glaub",
"email": "[email protected]",
"homepage": "http://magl.net"
}
],
"require": {
"php": "^7.4 || ^8.0",
"ext-json": "*",
"ext-phar": "*",
"composer-runtime-api": "^2.0.0",
"nikic/php-parser": "^4.10.2",
"symfony/console": "^5.1.8",
"webmozart/assert": "^1.9.1",
"webmozart/glob": "^4.2.0"
},
"require-dev": {
"ext-zend-opcache": "*",
"doctrine/coding-standard": "^8.2.0",
"mikey179/vfsstream": "^1.6.8",
"phpstan/phpstan": "^0.12.64",
"phpunit/phpunit": "^9.5.0",
"vimeo/psalm": "^4.3.2"
},
"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"
]
}