diff --git a/README.md b/README.md index 0492282..bc77a73 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,8 @@ Magento Guest Audit The idea behind this is to evaluate the quality and security of a Magento site you don't have access to. The scenario when you're interviewing a potential developer or vetting a new client and want to have an idea of what you're getting into. +![Screenshot](http://i.imgur.com/WbIdb8F.png) + ## Installation * Clone the repository @@ -20,4 +22,6 @@ composer install $ ./bin/mga scan store.example.com -If you have access to the production environment, try [mageaudit](https://github.com/steverobbins/mageaudit). \ No newline at end of file +## License + +[Creative Commons Attribution 4.0 International](https://creativecommons.org/licenses/by/4.0/) \ No newline at end of file diff --git a/src/MGA/Console/Command/ScanCommand.php b/src/MGA/Console/Command/ScanCommand.php index 63fc09f..af64061 100644 --- a/src/MGA/Console/Command/ScanCommand.php +++ b/src/MGA/Console/Command/ScanCommand.php @@ -1,4 +1,13 @@ + * @license http://creativecommons.org/licenses/by/4.0/ + * @link https://github.com/steverobbins/magento-guest-audit + */ namespace MGA\Console\Command; @@ -8,6 +17,9 @@ use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; +/** + * Add scan command and run tests + */ class ScanCommand extends Command { /** diff --git a/src/bootstrap.php b/src/bootstrap.php index e0ec505..ad00b0c 100644 --- a/src/bootstrap.php +++ b/src/bootstrap.php @@ -1,4 +1,13 @@ + * @license http://creativecommons.org/licenses/by/4.0/ + * @link https://github.com/steverobbins/magento-guest-audit + */ require_once __DIR__ . '/../vendor/autoload.php';