Skip to content

Commit

Permalink
chore(release): 0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
marcocesarato committed Jun 17, 2021
1 parent feb88cb commit efb196b
Show file tree
Hide file tree
Showing 6 changed files with 101 additions and 91 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@
All notable changes to this project will be documented in this file.
<!--- END HEADER -->

## [0.10.0](https://github.com/marcocesarato/PHP-Antimalware-Scanner/compare/v0.9.1...v0.10.0) (2021-06-17)


### Features

* Add --scan-all flag to scan all files and removed mime checking ([46a091](https://github.com/marcocesarato/PHP-Antimalware-Scanner/commit/46a091f960b462bed871d4cd73c393c7e61fa670))

---

## [0.9.1](https://github.com/marcocesarato/PHP-Antimalware-Scanner/compare/v0.9.0...v0.9.1) (2021-06-06)


Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<h1 align="center">PHP Antimalware Scanner</h1>

![Version](https://img.shields.io/badge/version-0.9.1-brightgreen?style=for-the-badge)
![Version](https://img.shields.io/badge/version-0.10.0-brightgreen?style=for-the-badge)
![Requirements](https://img.shields.io/badge/php-%3E%3D%205.5-4F5D95?style=for-the-badge)
![Code Style](https://img.shields.io/badge/code%20style-PSR-blue?style=for-the-badge)
![License](https://img.shields.io/github/license/marcocesarato/PHP-Antimalware-Scanner?style=for-the-badge)
Expand Down
177 changes: 89 additions & 88 deletions composer.json
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 modified dist/scanner
Binary file not shown.
2 changes: 1 addition & 1 deletion dist/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.9.1
0.10.0
2 changes: 1 addition & 1 deletion src/Scanner.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ class Scanner
*
* @var string
*/
public static $version = '0.9.1';
public static $version = '0.10.0';

/**
* Repo url.
Expand Down

0 comments on commit efb196b

Please sign in to comment.