sterntours/trunk/_vendor/doctrine/doctrine-cache-bundle
Kevin Adametz 33458b2ca3 Update
2020-03-07 19:46:02 +01:00
..
Acl/Model Update 2020-03-07 19:46:02 +01:00
Command Update 2020-03-07 19:46:02 +01:00
DependencyInjection Update 2020-03-07 19:46:02 +01:00
Resources Update 2020-03-07 19:46:02 +01:00
Tests Update 2020-03-07 19:46:02 +01:00
.coveralls.yml Update 2020-03-07 19:46:02 +01:00
.gitignore Update 2020-03-07 19:46:02 +01:00
.travis.yml Update 2020-03-07 19:46:02 +01:00
composer.json Update 2020-03-07 19:46:02 +01:00
DoctrineCacheBundle.php Update 2020-03-07 19:46:02 +01:00
LICENSE Update 2020-03-07 19:46:02 +01:00
phpunit.xml.dist Update 2020-03-07 19:46:02 +01:00
README.md Update 2020-03-07 19:46:02 +01:00
ruleset.xml Update 2020-03-07 19:46:02 +01: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.