cache / adapter-bundle
A bundle that registers cache implementations as Symfony services supporting PSR-6 and tagging
Installs: 854 707
Dependents: 12
Suggesters: 12
Security: 0
Stars: 30
Watchers: 6
Forks: 27
Type:symfony-bundle
Requires
- php: ^5.6 || ^7.0
- cache/array-adapter: ^1.0
- cache/namespaced-cache: ^1.0
- psr/cache: ^1.0
- psr/log: ^1.0
- symfony/framework-bundle: ^2.7 || ^3.0 || ^4.0
- symfony/options-resolver: ^2.7 || ^3.0 || ^4.0
Requires (Dev)
- cache/apc-adapter: ^1.0
- cache/apcu-adapter: ^1.0
- cache/chain-adapter: ^1.0
- cache/doctrine-adapter: ^1.0
- cache/filesystem-adapter: ^1.0
- cache/memcache-adapter: ^1.0
- cache/memcached-adapter: ^1.0
- cache/predis-adapter: ^1.0
- cache/prefixed-cache: ^1.0
- cache/redis-adapter: ^1.0
- cache/void-adapter: ^1.0
- doctrine/cache: ^1.6
- matthiasnoback/symfony-dependency-injection-test: ^1.1 || ^2.3
- nyholm/symfony-bundle-test: ^1.2.0
- predis/predis: ^1.1
- symfony/phpunit-bridge: ^3.3 || ^4.0
Suggests
- cache/*-adapter: A actual implementation of PSR-6 cache
- cache/cache-bundle: To integrate with the symfony framework
README
This bundle helps you configurate and register PSR-6 cache services. It is a part of the PHP Cache organisation. To read about features like tagging and hierarchy support please read the shared documentation at www.php-cache.com.
To Install
Run the following in your project root, assuming you have composer set up for your project
composer require cache/adapter-bundle
Add the bundle to app/AppKernel.php
$bundles = [ // ... new Cache\AdapterBundle\CacheAdapterBundle(), ];
Read the documentation at www.php-cache.com/symfony/adapter-bundle.
Contribute
Contributions are very welcome! Send a pull request or report any issues you find on the issue tracker.