/VCRBundle

Integrates php-vcr into Symfony and its web profiler.

Primary LanguageCSS

VCRBundle

Integrates php-vcr into Symfony and its web profiler.

PHP-VCR Symfony web profiler panel

PHP-VCR Symfony web profiler panel - request details

PHP-VCR Symfony web profiler panel - response details

Installation

Install the behavior adding php-vcr/vcr-bundle to your composer.json or from CLI:

php composer.phar require php-vcr/vcr-bundle

And declare the bundle in your app/AppKernel.php file:

public function registerBundles()
{
    if (in_array($this->getEnvironment(), array('dev', 'test'))) {
        $bundles[] = new VCR\VCRBundle\VCRVCRBundle();
    }
}

Configuration reference

vcrvcr:
    cassette:
        type:   json
        path:   '%kernel.cache_dir%/vcr'
        name:   vcr

Credits

License

This bundle is released under the MIT license.