├── .doctrine-project.json ├── .github └── PULL_REQUEST_TEMPLATE.md ├── Acl └── Model │ └── AclCache.php ├── Command ├── CacheCommand.php ├── ContainsCommand.php ├── DeleteCommand.php ├── FlushCommand.php └── StatsCommand.php ├── DependencyInjection ├── CacheProviderLoader.php ├── Configuration.php ├── Definition │ ├── CacheDefinition.php │ ├── ChainDefinition.php │ ├── CouchbaseDefinition.php │ ├── FileSystemDefinition.php │ ├── MemcacheDefinition.php │ ├── MemcachedDefinition.php │ ├── MongodbDefinition.php │ ├── PhpFileDefinition.php │ ├── PredisDefinition.php │ ├── RedisDefinition.php │ ├── RiakDefinition.php │ └── Sqlite3Definition.php ├── DoctrineCacheExtension.php └── SymfonyBridgeAdapter.php ├── DoctrineCacheBundle.php ├── LICENSE ├── README.md ├── Resources ├── config │ ├── schema │ │ └── doctrine_cache-1.0.xsd │ └── services.xml └── doc │ ├── acl_cache.rst │ ├── custom_providers.rst │ ├── index.rst │ ├── installation.rst │ ├── reference.rst │ ├── service_parameter.rst │ └── usage.rst └── composer.json /.doctrine-project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/DoctrineCacheBundle/HEAD/.doctrine-project.json -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/DoctrineCacheBundle/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /Acl/Model/AclCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/DoctrineCacheBundle/HEAD/Acl/Model/AclCache.php -------------------------------------------------------------------------------- /Command/CacheCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/DoctrineCacheBundle/HEAD/Command/CacheCommand.php -------------------------------------------------------------------------------- /Command/ContainsCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/DoctrineCacheBundle/HEAD/Command/ContainsCommand.php -------------------------------------------------------------------------------- /Command/DeleteCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/DoctrineCacheBundle/HEAD/Command/DeleteCommand.php -------------------------------------------------------------------------------- /Command/FlushCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/DoctrineCacheBundle/HEAD/Command/FlushCommand.php -------------------------------------------------------------------------------- /Command/StatsCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/DoctrineCacheBundle/HEAD/Command/StatsCommand.php -------------------------------------------------------------------------------- /DependencyInjection/CacheProviderLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/DoctrineCacheBundle/HEAD/DependencyInjection/CacheProviderLoader.php -------------------------------------------------------------------------------- /DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/DoctrineCacheBundle/HEAD/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /DependencyInjection/Definition/CacheDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/DoctrineCacheBundle/HEAD/DependencyInjection/Definition/CacheDefinition.php -------------------------------------------------------------------------------- /DependencyInjection/Definition/ChainDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/DoctrineCacheBundle/HEAD/DependencyInjection/Definition/ChainDefinition.php -------------------------------------------------------------------------------- /DependencyInjection/Definition/CouchbaseDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/DoctrineCacheBundle/HEAD/DependencyInjection/Definition/CouchbaseDefinition.php -------------------------------------------------------------------------------- /DependencyInjection/Definition/FileSystemDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/DoctrineCacheBundle/HEAD/DependencyInjection/Definition/FileSystemDefinition.php -------------------------------------------------------------------------------- /DependencyInjection/Definition/MemcacheDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/DoctrineCacheBundle/HEAD/DependencyInjection/Definition/MemcacheDefinition.php -------------------------------------------------------------------------------- /DependencyInjection/Definition/MemcachedDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/DoctrineCacheBundle/HEAD/DependencyInjection/Definition/MemcachedDefinition.php -------------------------------------------------------------------------------- /DependencyInjection/Definition/MongodbDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/DoctrineCacheBundle/HEAD/DependencyInjection/Definition/MongodbDefinition.php -------------------------------------------------------------------------------- /DependencyInjection/Definition/PhpFileDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/DoctrineCacheBundle/HEAD/DependencyInjection/Definition/PhpFileDefinition.php -------------------------------------------------------------------------------- /DependencyInjection/Definition/PredisDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/DoctrineCacheBundle/HEAD/DependencyInjection/Definition/PredisDefinition.php -------------------------------------------------------------------------------- /DependencyInjection/Definition/RedisDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/DoctrineCacheBundle/HEAD/DependencyInjection/Definition/RedisDefinition.php -------------------------------------------------------------------------------- /DependencyInjection/Definition/RiakDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/DoctrineCacheBundle/HEAD/DependencyInjection/Definition/RiakDefinition.php -------------------------------------------------------------------------------- /DependencyInjection/Definition/Sqlite3Definition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/DoctrineCacheBundle/HEAD/DependencyInjection/Definition/Sqlite3Definition.php -------------------------------------------------------------------------------- /DependencyInjection/DoctrineCacheExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/DoctrineCacheBundle/HEAD/DependencyInjection/DoctrineCacheExtension.php -------------------------------------------------------------------------------- /DependencyInjection/SymfonyBridgeAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/DoctrineCacheBundle/HEAD/DependencyInjection/SymfonyBridgeAdapter.php -------------------------------------------------------------------------------- /DoctrineCacheBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/DoctrineCacheBundle/HEAD/DoctrineCacheBundle.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/DoctrineCacheBundle/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/DoctrineCacheBundle/HEAD/README.md -------------------------------------------------------------------------------- /Resources/config/schema/doctrine_cache-1.0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/DoctrineCacheBundle/HEAD/Resources/config/schema/doctrine_cache-1.0.xsd -------------------------------------------------------------------------------- /Resources/config/services.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/DoctrineCacheBundle/HEAD/Resources/config/services.xml -------------------------------------------------------------------------------- /Resources/doc/acl_cache.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/DoctrineCacheBundle/HEAD/Resources/doc/acl_cache.rst -------------------------------------------------------------------------------- /Resources/doc/custom_providers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/DoctrineCacheBundle/HEAD/Resources/doc/custom_providers.rst -------------------------------------------------------------------------------- /Resources/doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/DoctrineCacheBundle/HEAD/Resources/doc/index.rst -------------------------------------------------------------------------------- /Resources/doc/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/DoctrineCacheBundle/HEAD/Resources/doc/installation.rst -------------------------------------------------------------------------------- /Resources/doc/reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/DoctrineCacheBundle/HEAD/Resources/doc/reference.rst -------------------------------------------------------------------------------- /Resources/doc/service_parameter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/DoctrineCacheBundle/HEAD/Resources/doc/service_parameter.rst -------------------------------------------------------------------------------- /Resources/doc/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/DoctrineCacheBundle/HEAD/Resources/doc/usage.rst -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/DoctrineCacheBundle/HEAD/composer.json --------------------------------------------------------------------------------