Skip to content

Instantly share code, notes, and snippets.

@jderusse
Created December 11, 2014 15:47
Show Gist options
  • Save jderusse/7c86752c7c38eff8db65 to your computer and use it in GitHub Desktop.
Save jderusse/7c86752c7c38eff8db65 to your computer and use it in GitHub Desktop.
<?php
<<<CONFIG
packages:
- "sensiolabs/security-checker: *"
CONFIG;
use Symfony\Component\Console\Application;
use SensioLabs\Security\Command\SecurityCheckerCommand;
use SensioLabs\Security\SecurityChecker;
$console = new Application('SensioLabs Security Checker', '1.0');
$console->add(new SecurityCheckerCommand(new SecurityChecker()));
$console->run();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment