├── .gitignore ├── .php_cs.dist ├── LICENSE ├── README.md ├── SensioLabs └── Security │ ├── Command │ └── SecurityCheckerCommand.php │ ├── Crawler.php │ ├── Exception │ ├── ExceptionInterface.php │ ├── HttpException.php │ └── RuntimeException.php │ ├── Result.php │ └── SecurityChecker.php ├── box.json ├── composer.json └── security-checker /.gitignore: -------------------------------------------------------------------------------- 1 | composer.lock 2 | /vendor/ 3 | -------------------------------------------------------------------------------- /.php_cs.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensiolabs/security-checker/HEAD/.php_cs.dist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensiolabs/security-checker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensiolabs/security-checker/HEAD/README.md -------------------------------------------------------------------------------- /SensioLabs/Security/Command/SecurityCheckerCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensiolabs/security-checker/HEAD/SensioLabs/Security/Command/SecurityCheckerCommand.php -------------------------------------------------------------------------------- /SensioLabs/Security/Crawler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensiolabs/security-checker/HEAD/SensioLabs/Security/Crawler.php -------------------------------------------------------------------------------- /SensioLabs/Security/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensiolabs/security-checker/HEAD/SensioLabs/Security/Exception/ExceptionInterface.php -------------------------------------------------------------------------------- /SensioLabs/Security/Exception/HttpException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensiolabs/security-checker/HEAD/SensioLabs/Security/Exception/HttpException.php -------------------------------------------------------------------------------- /SensioLabs/Security/Exception/RuntimeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensiolabs/security-checker/HEAD/SensioLabs/Security/Exception/RuntimeException.php -------------------------------------------------------------------------------- /SensioLabs/Security/Result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensiolabs/security-checker/HEAD/SensioLabs/Security/Result.php -------------------------------------------------------------------------------- /SensioLabs/Security/SecurityChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensiolabs/security-checker/HEAD/SensioLabs/Security/SecurityChecker.php -------------------------------------------------------------------------------- /box.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensiolabs/security-checker/HEAD/box.json -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensiolabs/security-checker/HEAD/composer.json -------------------------------------------------------------------------------- /security-checker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensiolabs/security-checker/HEAD/security-checker --------------------------------------------------------------------------------