-
Notifications
You must be signed in to change notification settings - Fork 108
/
composer.json
90 lines (90 loc) · 2.62 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "marcocesarato/amwscan",
"description": "AMWSCAN (Antimalware Scanner) is a php antimalware/antivirus scanner console script written in php for scan your project. This can work on php projects and a lot of others platform.",
"type": "console",
"license": "GPL-3.0-or-later",
"minimum-stability": "stable",
"keywords": [
"antimalware",
"amwscan",
"scanner",
"antivirus",
"malware",
"virus",
"exploit",
"signatures",
"functions",
"eval",
"base64",
"deobfuscated",
"deobfuscator",
"deobfuscation",
"decode",
"obfuscated",
"obfuscation",
"evil",
"evil-code",
"code",
"analysis",
"tool",
"cleaner",
"backdoor",
"shell",
"scan",
"scanning"
],
"authors": [
{
"name": "Marco Cesarato",
"email": "cesarato.developer@gmail.com"
}
],
"scripts": {
"start": "php ./src/index.php",
"dist": "php ./dist/scanner",
"changelog": "conventional-changelog",
"release": "conventional-changelog --commit",
"release:minor": "conventional-changelog --minor --commit",
"release:major": "conventional-changelog --major --commit",
"build": "php bin/build",
"fix-cs": "sh bin/fix-cs",
"fix-cs-all": "sh bin/fix-cs-all",
"check-cs": "php bin/run vendor/bin/php-cs-fixer fix --dry-run --format=txt --verbose --diff --diff-format=udiff --config=.php-cs-fixer.php",
"lint": "sh bin/lint",
"post-install-cmd": "php bin/run vendor/bin/cghooks add --ignore-lock",
"post-update-cmd": "php bin/run vendor/bin/cghooks update"
},
"require": {
"php": ">=5.5",
"ext-json": "*",
"ext-fileinfo": "*",
"ext-zlib": "*",
"ext-mbstring": "*"
},
"require-dev": {
"brainmaestro/composer-git-hooks": "^2.8",
"friendsofphp/php-cs-fixer": "^3.0",
"marcocesarato/php-conventional-changelog": "^1.10"
},
"config": {
"process-timeout": 0,
"sort-packages": true
},
"autoload": {
"psr-4": {
"AMWScan\\": "src"
}
},
"extra": {
"hooks": {
"pre-commit": [
"sh bin/pre-commit"
],
"pre-push": [
"php bin/run vendor/bin/php-cs-fixer fix --dry-run --format=txt --verbose --diff --diff-format=udiff --config=.php_cs"
],
"post-merge": "composer install"
}
},
"version": "0.14.0"
}