devsdmf/silex-zend-cache-provider

A Silex service provider for Zend Cache library

1.1.0 2015-01-12 19:08 UTC

This package is auto-updated.

Last update: 2024-03-11 13:16:37 UTC


README

Build StatusLatest Stable VersionTotal DownloadsLicense SensioLabsInsight

This is a service provider prepared to integrate Zend\Cache library into Silex framework.

Installation

Add the following dependency to composer.json file of your project:

{
    "require": {
        "devsdmf/silex-zend-cache-provider": "1.1.0"
    }
}

Usage

use Silex\Application;
use Silex\Provider\ZendCacheServiceProvider;

$app = new Application();

// Your application setup

$app->register(new ZendCacheServiceProvider(), array(
    'cache.options'=>array(
        'zendcache'=>array(
            'factory'=>array(
                // Your ZendCache factory configuration
            ),
            'options'=>array(
                // Your options for ZendCache
            ),
        ),
    ),
));

// Using cache
$app['cache'];

Configuration

For more information about configuration and options, see the official Zend Cache documentation.

Tests

To run the test suite, you need install the require-dev:

$ composer install --dev
$ ./vendor/bin/phpunit

License

This library is licensed under the MIT license.