Skip to content

Commit

Permalink
Adding license
Browse files Browse the repository at this point in the history
  • Loading branch information
steverobbins committed Mar 12, 2015
1 parent f67d892 commit b21b414
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 1 deletion.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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).
## License

[Creative Commons Attribution 4.0 International](https://creativecommons.org/licenses/by/4.0/)
12 changes: 12 additions & 0 deletions src/MGA/Console/Command/ScanCommand.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
<?php
/**
* Magento Guest Audit
*
* PHP version 5
*
* @author Steve Robbins <steven.j.robbins@gmail.com>
* @license http://creativecommons.org/licenses/by/4.0/
* @link https://github.com/steverobbins/magento-guest-audit
*/

namespace MGA\Console\Command;

Expand All @@ -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
{
/**
Expand Down
9 changes: 9 additions & 0 deletions src/bootstrap.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
<?php
/**
* Magento Guest Audit
*
* PHP version 5
*
* @author Steve Robbins <steven.j.robbins@gmail.com>
* @license http://creativecommons.org/licenses/by/4.0/
* @link https://github.com/steverobbins/magento-guest-audit
*/

require_once __DIR__ . '/../vendor/autoload.php';

Expand Down

0 comments on commit b21b414

Please sign in to comment.