From 834aac32fcbf059265d88b252cd89ee94f246204 Mon Sep 17 00:00:00 2001 From: Oleg Date: Tue, 17 Sep 2019 12:46:22 +0600 Subject: [PATCH 1/2] emet function replace for php7.2 --- Zend/Cache/Backend.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Zend/Cache/Backend.php b/Zend/Cache/Backend.php index 86c7479..663ca6a 100644 --- a/Zend/Cache/Backend.php +++ b/Zend/Cache/Backend.php @@ -65,7 +65,7 @@ public function __construct($options = []) if (!is_array($options)) { Zend_Cache::throwException('Options parameter must be an array'); } - while (list($name, $value) = each($options)) { + foreach ($options as $name => $value) { $this->setOption($name, $value); } } From b12ed6b12166496a6e5a657c80638a35950d7f94 Mon Sep 17 00:00:00 2001 From: olezhikz Date: Thu, 19 Sep 2019 13:10:44 +0600 Subject: [PATCH 2/2] name --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 49058a8..23c2cbc 100644 --- a/composer.json +++ b/composer.json @@ -1,5 +1,5 @@ { - "name": "web-monster/dklabcache", + "name": "livestreet/dklabcache", "license": "MIT", "description": "Dklabcache for composer", "keywords": ["cache", "caching", "system", "file-system", "redis"],