forked from composer-unused/composer-unused
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
117 lines (117 loc) · 3.84 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "icanhazstring/composer-unused",
"description": "Show unused packages by scanning your code",
"license": "MIT",
"type": "library",
"keywords": [
"static analysis",
"composer",
"unused",
"php-parser"
],
"authors": [
{
"name": "Andreas Frömer",
"email": "[email protected]"
}
],
"homepage": "https://github.com/composer-unused/composer-unused",
"support": {
"issues": "https://github.com/composer-unused/composer-unused/issues",
"source": "https://github.com/composer-unused/composer-unused"
},
"funding": [
{
"type": "other",
"url": "https://paypal.me/icanhazstring"
},
{
"type": "github",
"url": "https://github.com/sponsors/icanhazstring"
}
],
"require": {
"php": "^7.4 || ^8.0",
"ext-json": "*",
"composer-unused/contracts": "^0.3",
"composer-unused/symbol-parser": "^0.2.2",
"nikic/php-parser": "^4.15",
"ondram/ci-detector": "^4.1",
"phpstan/phpdoc-parser": "^1.12",
"psr/container": "^1.0 || ^2.0",
"psr/log": "^1.1 || ^2 || ^3",
"symfony/config": "^4.4 || ^5.4 || ^6.0 || ^7.0",
"symfony/console": "^4.4 || ^5.4 || ^6.0 || ^7.0",
"symfony/dependency-injection": "^4.4.8 || ^5.4 || ^6.0 || ^7.0",
"symfony/property-access": "^4.4 || ^5.4 || ^6.0 || ^7.0",
"symfony/serializer": "^4.4 || ^5.4 || ^6.0 || ^7.0",
"symfony/validator": "^4.4 || ^5.4 || ^6.0 || ^7.0",
"webmozart/assert": "^1.10",
"webmozart/glob": "^4.4"
},
"require-dev": {
"ext-ds": "*",
"ext-zend-opcache": "*",
"bamarni/composer-bin-plugin": "^1.8",
"codeception/verify": "^3.0",
"dg/bypass-finals": "^1.5",
"ergebnis/composer-normalize": "^2.28",
"jangregor/phpstan-prophecy": "^1.0",
"php-ds/php-ds": "^1.4",
"phpspec/prophecy-phpunit": "^2.0.2",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-phpunit": "^1.3",
"phpunit/phpunit": "^9.6.13",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "^3.7"
},
"autoload": {
"psr-4": {
"ComposerUnused\\ComposerUnused\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"ComposerUnused\\ComposerUnused\\Test\\Integration\\": "tests/Integration",
"ComposerUnused\\ComposerUnused\\Test\\Unit\\": "tests/Unit",
"ComposerUnused\\ComposerUnused\\Test\\Stubs\\": "tests/Stubs"
}
},
"bin": [
"bin/composer-unused"
],
"config": {
"allow-plugins": {
"phpstan/extension-installer": true,
"bamarni/composer-bin-plugin": true,
"ergebnis/composer-normalize": true
},
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"bamarni-bin": {
"bin-links": true,
"forward-command": true
}
},
"scripts": {
"analyse": "phpstan analyse --no-progress",
"check": [
"@cs-check",
"@analyse",
"@test"
],
"cs-check": "phpcs --parallel=50 --cache=data/cs-check.json",
"cs-fix": "phpcbf --parallel=50",
"test": "phpunit"
},
"scripts-descriptions": {
"analyse": "Use \"phpstan\" to the analyse static code. See phpstan.neon",
"check": "Check the coding covention and run the tests",
"cs-check": "Use \"phpcs\" to check the coding convention. See phpcs.xml",
"cs-fix": "Use \"phpcbf\" to fix the coding convention. See phpcs.xml",
"test": "Use \"phpunit\" to run the tests. See phpunit.xml"
}
}