-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
57 lines (57 loc) · 1.43 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
{
"name": "best-it/license-check",
"prefer-stable": true,
"scripts": {
"fix": [
"phpcbf"
],
"low-level-tests": [
"phpcs --ignore=\"**.js\" --runtime-set ignore_warnings_on_exit 1",
"phpmd src,tests text ./phpmd.xml.dist",
"phpcpd src tests",
"phpstan analyse --memory-limit=2G",
"phpunit"
]
},
"description": "Tool to check licenses of used packages.",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "best it AG",
"email": "info@bestit.de"
}
],
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"BestIt\\LicenseCheck\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"BestIt\\LicenseCheck\\": "tests"
}
},
"require": {
"php": "^8.0",
"symfony/config": "^4.4 || ^5.2",
"symfony/console": "^4.4 || ^5.2",
"symfony/dependency-injection": "^4.4 || ^5.2",
"symfony/finder": "^4.4 || ^5.2",
"symfony/yaml": "^4.4 || ^5.2"
},
"require-dev": {
"best-it/php_codesniffer": "dev-release/4.0.0",
"phpmd/phpmd": "^2.9",
"phpstan/phpstan": "^0.12.80",
"phpunit/phpunit": "^9.5",
"sebastian/phpcpd": "^6.0"
},
"config": {
"sort-packages": true
},
"bin": [
"bin/license-check"
]
}