/VCRBundle

Integrates php-vcr into Symfony and its web profiler.

Primary LanguagePHP

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:

composer require php-vcr/vcr-bundle

And declare the bundle in your config/bundles.php file:

return [
    // ...
    VCR\VCRBundle\VCRBundle::class => ['test' => true],
];

Configuration reference

vcr:
    enabled: true
    library_hooks:
        stream_wrapper: false
        curl: false
        soap: false
    request_matchers:
        method: true
        url: true
        query_string: true
        host: true
        headers: true
        body: true
        post_fields: true
    cassette:
        type: json
        path: '%kernel.cache_dir%/vcr'
        name: vcr

Credits

License

This bundle is released under the MIT license.