bocharsky-bw / security-checker-bundle
Security Checker wrapper for Symfony Web Debug Toolbar
Installs: 64
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 2
Forks: 0
Open Issues: 0
pkg:composer/bocharsky-bw/security-checker-bundle
Requires
- php: >=5.4.0
- sensiolabs/security-checker: ~2.0
- symfony/framework-bundle: ~2.0
This package is auto-updated.
Last update: 2025-09-29 01:37:33 UTC
README
Security Checker wrapper for Symfony Web Debug Toolbar.
Install
Install bundle with Composer
dependency manager first by running the command:
$ composer require "bocharsky-bw/security-checker-bundle:dev-master"
Composer
will install the bundle to your project's vendor
directory.
Include
Including the bundle to your Symfony
project is as easy as to do a few simple steps.
- Enable the bundle in application kernel for
dev
environment:
<?php // app/AppKernel.php public function registerBundles() { // other bundles... if (in_array($this->getEnvironment(), array('dev', 'test'))) { // other dev bundles... $bundles[] = new BW\SecurityCheckerBundle\BWSecurityCheckerBundle(); } }
- Register the bundle's routes for
dev
environment:
# app/config/routing_dev.yml _bw_security_checker_bundle: resource: "@BWSecurityCheckerBundle/Resources/config/routing.yml" prefix: /_bw
Congratulations!
You're ready to check your Symfony
project for known* security issues by easiest way!
* Disclaimer: This checker can only detect vulnerabilities that are referenced in the SensioLabs security advisories database.