-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
41 lines (41 loc) · 1.06 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
{
"name": "madewithlove/license-checker",
"description": "CLI tool to verify allowed licenses for composer dependencies",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "madewithlove",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"bin": ["bin/license-checker"],
"require": {
"php": "^8.1",
"symfony/console": "^4.0 || ^5.0 || ^6.0 || ^7.0",
"symfony/process": "^4.0 || ^5.0 || ^6.0 || ^7.0",
"symfony/yaml": "^4.0 || ^5.0 || ^6.0 || ^7.0"
},
"require-dev": {
"phpunit/phpunit": "^10.1",
"vimeo/psalm": "^5.9",
"psalm/plugin-phpunit": "^0.18",
"friendsofphp/php-cs-fixer": "^3.16"
},
"autoload": {
"psr-4": {
"LicenseChecker\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LicenseChecker\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true
}
}
}