doctrine/doctrine-cache-bundle
Symfony Bundle for Doctrine Cache
Installs: 21 491 601
Dependents: 314
Suggesters: 12
Stars: 652
Watchers: 24
Forks: 73
Open Issues: 14
Type:symfony-bundle
Requires
- php: >=5.3.2
- symfony/doctrine-bridge: ~2.7|~3.3|~4.0
- doctrine/inflector: ~1.0
- doctrine/cache: ^1.4.2
Requires (Dev)
- phpunit/phpunit: ~4|~5
- symfony/phpunit-bridge: ~2.7|~3.3|~4.0
- symfony/yaml: ~2.7|~3.3|~4.0
- symfony/validator: ~2.7|~3.3|~4.0
- symfony/console: ~2.7|~3.3|~4.0
- symfony/finder: ~2.7|~3.3|~4.0
- symfony/framework-bundle: ~2.7|~3.3|~4.0
- symfony/security-acl: ~2.7|~3.3
- instaclick/coding-standard: ~1.1
- satooshi/php-coveralls: ^1.0
- squizlabs/php_codesniffer: ~1.5
- instaclick/object-calisthenics-sniffs: dev-master
- instaclick/symfony2-coding-standard: dev-remaster
- predis/predis: ~0.8
Suggests
- symfony/security-acl: For using this bundle to cache ACLs
README
Symfony Bundle for Doctrine Cache.
Installation
- Add this bundle to your project as a composer dependency:
composer require doctrine/doctrine-cache-bundle
-
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.