-
Notifications
You must be signed in to change notification settings - Fork 109
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
feb88cb
commit efb196b
Showing
6 changed files
with
101 additions
and
91 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,89 +1,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": "[email protected]" | ||
} | ||
], | ||
"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": "^2.19", | ||
"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" | ||
} | ||
} | ||
} | ||
"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": "[email protected]" | ||
} | ||
], | ||
"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": "^2.19", | ||
"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.10.0" | ||
} |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.9.1 | ||
0.10.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters