forked from Insolita/unused-scanner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 1.02 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
{
"name": "insolita/unused-scanner" ,
"description": "Detect unused composer dependencies" ,
"type": "library" ,
"license": "mit" ,
"authors": [
{
"name": "insolita" ,
"email": "[email protected]"
}
] ,
"minimum-stability": "dev" ,
"prefer-stable": true ,
"require": {
"php": ">=7.1" ,
"ext-json": "*" ,
"ext-mbstring": "*" ,
"symfony/finder": "^3.4|^4.0|^5.0" ,
"nesbot/carbon": ">=1.22"
} ,
"require-dev": {
"phpunit/phpunit": "^7.0|^8.0|^9.0",
"symfony/thanks": "^1.2"
} ,
"bin": [
"unused_scanner"
] ,
"autoload": {
"psr-4": {
"insolita\\Scanner\\Lib\\": "Lib" ,
"insolita\\Scanner\\Exceptions\\": "Exceptions"
}
} ,
"extra": {
"branch-alias": {
"dev-legacy": "1.3.x-dev"
}
}
}