sterntours/vendor/doctrine/doctrine-cache-bundle
2020-07-09 12:49:32 +02:00
..
Acl/Model init without trunk 2020-07-09 12:49:32 +02:00
Command init without trunk 2020-07-09 12:49:32 +02:00
DependencyInjection init without trunk 2020-07-09 12:49:32 +02:00
Resources init without trunk 2020-07-09 12:49:32 +02:00
Tests init without trunk 2020-07-09 12:49:32 +02:00
.coveralls.yml init without trunk 2020-07-09 12:49:32 +02:00
.gitignore init without trunk 2020-07-09 12:49:32 +02:00
.travis.yml init without trunk 2020-07-09 12:49:32 +02:00
composer.json init without trunk 2020-07-09 12:49:32 +02:00
DoctrineCacheBundle.php init without trunk 2020-07-09 12:49:32 +02:00
LICENSE init without trunk 2020-07-09 12:49:32 +02:00
phpunit.xml.dist init without trunk 2020-07-09 12:49:32 +02:00
README.md init without trunk 2020-07-09 12:49:32 +02:00
ruleset.xml init without trunk 2020-07-09 12:49:32 +02:00

DoctrineCacheBundle

Symfony Bundle for Doctrine Cache.

Master: Build Status

Master: Coverage Status

Installation

  1. Add this bundle to your project as a composer dependency:
composer require doctrine/doctrine-cache-bundle
  1. Add this bundle in your application kernel:

    // app/AppKernel.php
    public function registerBundles()
    {
        // ...
        $bundles[] = new \Doctrine\Bundle\DoctrineCacheBundle\DoctrineCacheBundle();
    
        return $bundles;
    }
    

Read the documentation to learn how to configure and use your own cache providers.