php7-mysql-data/Kapitel_10/Lektion_4/symfony/vendor/doctrine/doctrine-cache-bundle
2016-08-21 00:15:10 +02:00
..
Acl/Model Initiale Version 2016-08-21 00:15:10 +02:00
Command Initiale Version 2016-08-21 00:15:10 +02:00
DependencyInjection Initiale Version 2016-08-21 00:15:10 +02:00
Resources Initiale Version 2016-08-21 00:15:10 +02:00
Tests Initiale Version 2016-08-21 00:15:10 +02:00
.coveralls.yml Initiale Version 2016-08-21 00:15:10 +02:00
.travis.yml Initiale Version 2016-08-21 00:15:10 +02:00
composer.json Initiale Version 2016-08-21 00:15:10 +02:00
DoctrineCacheBundle.php Initiale Version 2016-08-21 00:15:10 +02:00
LICENSE Initiale Version 2016-08-21 00:15:10 +02:00
phpunit.xml.dist Initiale Version 2016-08-21 00:15:10 +02:00
README.md Initiale Version 2016-08-21 00:15:10 +02:00
ruleset.xml Initiale Version 2016-08-21 00:15:10 +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.