snide / scrutinizer-bundle
Scrutinizer client for Symfony2 application
Installs: 0
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 0
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=5.3.3
- guzzle/cache: 3.*
- guzzle/plugin: 3.*
- snide/php-scrutinizer-client: dev-master
- symfony/framework-bundle: >=2.1.0
- twig/twig: 1.*
Requires (Dev)
- phpunit/phpunit: 3.7.*
This package is not auto-updated.
Last update: 2024-10-26 17:08:10 UTC
README
An quick overview of your repository (Symfony 2 Bundle)
Setup
Installation by Composer
If you use composer, add SnideScrutinizerBundle bundle as a dependency to the composer.json of your application
"require": { ... "snide/scrutinizer-bundle": "dev-master" ... }, ## Loading Add the bundle to your app/AppKernel.php under the dev environment ```php if (in_array($this->getEnvironment(), array('dev', 'test'))) { ... $bundles[] = new Snide\Bundle\ScrutinizerBundle\SnideScrutinizerBundle(); }
The bundle needs to copy the resources necessary to the web folder. You can use the command below:
php app/console assets:install
Configuration
Add the following to your app/config/config_dev.yml
(you only want to use this in the dev environment)
snide_scrutinizer: repository: slug: pdenis/SnideTravinizerBundle # your repository slug type: github # github or bitbucket # Optional filesystem_cache_path: "%kernel.cache_dir%/scrutinizer"