forked from mikestowe/Malicious-Code-Scanner
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 686 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 686 Bytes
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
{
"name": "yourname/malicious-code-scanner",
"description": "Lightweight PHP malware and backdoor scanner with rules, CLI, JSON reports, and notifiers.",
"type": "project",
"license": "MIT",
"require": {
"php": ">=8.0",
"ext-json": "*",
"ext-mbstring": "*",
"phpmailer/phpmailer": "^6.9"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"friendsofphp/php-cs-fixer": "^3.0",
"phpstan/phpstan": "^1.11"
},
"autoload": {
"psr-4": {
"MCS\\\": "src/"
}
},
"bin": [
"bin/malcode-scan"
],
"scripts": {
"test": "phpunit",
"stan": "phpstan analyse src --level=6",
"cs": "php-cs-fixer fix --allow-risky=yes"
}
}