forked from povils/phpmnd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1.34 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
{
"name": "povils/phpmnd",
"type": "application",
"description": "A tool to detect Magic numbers in codebase",
"license": "MIT",
"authors": [
{
"name": "Povilas Susinskas",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/povils/phpmnd/issues"
},
"require": {
"php": "^7.4 || ^8.0",
"symfony/console": "^4.4 || ^5.0 || ^6.0",
"symfony/finder": "^4.4 || ^5.0 || ^6.0",
"nikic/php-parser": "^4.13",
"php-parallel-lint/php-console-highlighter": "^1.0",
"phpunit/php-timer": "^2.0||^3.0||^4.0||^5.0||^6.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^2.8.1||^3.5"
},
"autoload": {
"psr-4": {
"Povils\\PHPMND\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Povils\\PHPMND\\Tests\\": "tests/"
}
},
"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"
}
}