-
Notifications
You must be signed in to change notification settings - Fork 46
/
composer.json
49 lines (49 loc) · 1.47 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
{
"name": "povils/phpmnd",
"type": "application",
"description": "A tool to detect Magic numbers in codebase",
"license": "MIT",
"authors": [
{
"name": "Povilas Susinskas",
"email": "povilassusinskas@gmail.com"
}
],
"support": {
"issues": "https://github.com/povils/phpmnd/issues"
},
"require": {
"php": "^7.4 || ^8.0",
"composer-runtime-api": "^2.0",
"nikic/php-parser": "^4.18 || ^5.0",
"php-parallel-lint/php-console-highlighter": "^1.0",
"phpunit/php-timer": "^2.0 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0",
"symfony/console": "^4.4 || ^5.0 || ^6.0 || ^7.0",
"symfony/finder": "^4.4 || ^5.0 || ^6.0 || ^7.0"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"squizlabs/php_codesniffer": "^2.8.1||^3.5"
},
"autoload": {
"psr-4": {
"Povils\\PHPMND\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Povils\\PHPMND\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"bin": [
"bin/phpmnd"
],
"scripts": {
"test": "phpunit",
"cs-check": "phpcs -p --standard=PSR2 --runtime-set ignore_warnings_on_exit 1 src tests --ignore=tests/Fixtures/Files",
"cs-fix": "phpcbf -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests --ignore=tests/Fixtures/Files"
}
}