cache-memcached.php

Memcached driver for my cache library
git clone git://git.finwo.net/lib/cache-memcached.php
Log | Files | Refs | README

commit 1178c03046bf5c143b062921098c07efd3ef6a1f
parent b7cc7e2d41730e04828d5be0cbd52787cb8efed2
Author: finwo <finwo@pm.me>
Date:   Mon, 23 Jan 2017 14:18:33 +0100

Added supports command ; Made a restraint on finwo/cache

Diffstat:
Mcomposer.json | 2+-
Mcomposer.lock | 13++++++-------
Msrc/Memcached.php | 8++++++++
3 files changed, 15 insertions(+), 8 deletions(-)

diff --git a/composer.json b/composer.json @@ -13,6 +13,6 @@ "require": { "php": ">=5.3", "ext-memcached": "*", - "finwo/cache": "*" + "finwo/cache": "^0.4" } } diff --git a/composer.lock b/composer.lock @@ -4,21 +4,20 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file", "This file is @generated automatically" ], - "hash": "899d50e9cdbdb7d9fbcfbe3e63f19085", - "content-hash": "a89efc2080e35f50a3fdbf1064c2ee17", + "content-hash": "78cd77a06ef112de6d47ed90739fa5ef", "packages": [ { "name": "finwo/cache", - "version": "v0.3.1", + "version": "v0.4.0", "source": { "type": "git", "url": "https://github.com/finwo/php-cache.git", - "reference": "caccc641cb0fd6973a654a2f333c4a91e32798d3" + "reference": "68769a66e31049c934389f1d22fe09f88c6a4867" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/finwo/php-cache/zipball/caccc641cb0fd6973a654a2f333c4a91e32798d3", - "reference": "caccc641cb0fd6973a654a2f333c4a91e32798d3", + "url": "https://api.github.com/repos/finwo/php-cache/zipball/68769a66e31049c934389f1d22fe09f88c6a4867", + "reference": "68769a66e31049c934389f1d22fe09f88c6a4867", "shasum": "" }, "require": { @@ -40,7 +39,7 @@ "email": "robin@finwo.nl" } ], - "time": "2016-06-20 08:54:06" + "time": "2017-01-23T13:06:05+00:00" } ], "packages-dev": [], diff --git a/src/Memcached.php b/src/Memcached.php @@ -111,4 +111,12 @@ class Memcached extends Cache // Return ourselves return $this; } + + /** + * (@inheritdoc} + */ + public function supported() + { + return class_exists('Memcached'); + } }