Index of /OLD/Corpone/vendor/doctrine/doctrine-cache-bundle

[ICO]NameLast modifiedSizeDescription

[PARENTDIR]Parent Directory   -  
[TXT]ruleset.xml 2016-11-08 09:22 347  
[   ]phpunit.xml.dist 2016-11-08 09:22 970  
[   ]composer.json 2016-11-08 09:22 2.4K 
[DIR]Resources/ 2016-11-08 09:22 -  
[TXT]LICENSE 2016-11-08 09:22 1.0K 
[   ]DoctrineCacheBundle.php2016-11-08 09:22 1.3K 
[DIR]DependencyInjection/ 2016-11-08 09:22 -  
[DIR]Command/ 2016-11-08 09:22 -  
[DIR]Acl/ 2016-11-08 09:22 -  

DoctrineCacheBundle
===================

Symfony Bundle for Doctrine Cache.

Master: [![Build Status](https://secure.travis-ci.org/doctrine/DoctrineCacheBundle.png?branch=master)](http://travis-ci.org/doctrine/DoctrineCacheBundle)

Master: [![Coverage Status](https://coveralls.io/repos/doctrine/DoctrineCacheBundle/badge.png?branch=master)](https://coveralls.io/r/doctrine/DoctrineCacheBundle?branch=master)

## Installation

1. Add this bundle to your project as a composer dependency:

  ```bash
  composer require doctrine/doctrine-cache-bundle
  ```

2. Add this bundle in your application kernel:

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

        return $bundles;
    }
    ```

Read the [documentation](Resources/doc/index.rst) to learn how to configure and
use your own cache providers.