From 4fb9064ab9d5b0b50a54c0ceac7d994e5f5fe159 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 13 Apr 2016 08:03:03 +0200 Subject: php-zendframework-zend-cache: 2.7.0 --- composer.json | 58 +++++++++++++++++++++++++++++++++++++++ php-zendframework-zend-cache.spec | 19 ++++++++----- 2 files changed, 70 insertions(+), 7 deletions(-) create mode 100644 composer.json diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..36bd525 --- /dev/null +++ b/composer.json @@ -0,0 +1,58 @@ +{ + "name": "zendframework/zend-cache", + "description": "provides a generic way to cache any data", + "license": "BSD-3-Clause", + "keywords": [ + "zf2", + "cache" + ], + "homepage": "https://github.com/zendframework/zend-cache", + "autoload": { + "psr-4": { + "Zend\\Cache\\": "src/" + } + }, + "require": { + "php": "^5.5 || ^7.0", + "zendframework/zend-stdlib": "^2.7 || ^3.0", + "zendframework/zend-servicemanager": "^2.7.5 || ^3.0.3", + "zendframework/zend-eventmanager": "^2.6.2 || ^3.0" + }, + "require-dev": { + "zendframework/zend-serializer": "^2.6", + "zendframework/zend-session": "^2.6.2", + "fabpot/php-cs-fixer": "1.7.*", + "phpunit/phpunit": "^4.5" + }, + "suggest": { + "zendframework/zend-serializer": "Zend\\Serializer component", + "zendframework/zend-session": "Zend\\Session component", + "ext-apc": "APC or compatible extension, to use the APC storage adapter", + "ext-apcu": "APCU >= 5.1.0, to use the APCu storage adapter", + "ext-dba": "DBA, to use the DBA storage adapter", + "ext-memcache": "Memcache >= 2.0.0 to use the Memcache storage adapter", + "ext-memcached": "Memcached >= 1.0.0 to use the Memcached storage adapter", + "ext-mongo": "Mongo, to use MongoDb storage adapter", + "ext-redis": "Redis, to use Redis storage adapter", + "ext-wincache": "WinCache, to use the WinCache storage adapter", + "ext-xcache": "XCache, to use the XCache storage adapter", + "mongofill/mongofill": "Alternative to ext-mongo - a pure PHP implementation designed as a drop in replacement" + }, + "minimum-stability": "dev", + "prefer-stable": true, + "extra": { + "branch-alias": { + "dev-master": "2.7-dev", + "dev-develop": "2.8-dev" + }, + "zf": { + "component": "Zend\\Cache", + "config-provider": "Zend\\Cache\\ConfigProvider" + } + }, + "autoload-dev": { + "psr-4": { + "ZendTest\\Cache\\": "test/" + } + } +} diff --git a/php-zendframework-zend-cache.spec b/php-zendframework-zend-cache.spec index 87f1c81..a8ec4bd 100644 --- a/php-zendframework-zend-cache.spec +++ b/php-zendframework-zend-cache.spec @@ -7,7 +7,7 @@ # Please, preserve the changelog entries # %global bootstrap 0 -%global gh_commit e2f62aaf4a8f884060483921a8d6d39d9087705d +%global gh_commit 33211da0598e8f20a8d425945e3d452a87c50364 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner zendframework %global gh_project zend-cache @@ -20,7 +20,7 @@ %endif Name: php-%{gh_owner}-%{gh_project} -Version: 2.6.1 +Version: 2.7.0 Release: 1%{?dist} Summary: Zend Framework %{library} component @@ -44,12 +44,12 @@ BuildRequires: php-composer(%{gh_owner}/zend-servicemanager) >= 2.7.5 BuildRequires: php-composer(%{gh_owner}/zend-eventmanager) >= 2.6.2 # From composer, "require-dev": { # "zendframework/zend-serializer": "^2.6", -# "zendframework/zend-session": "^2.5", +# "zendframework/zend-session": "^2.6.2", # "fabpot/php-cs-fixer": "1.7.*", -# "phpunit/PHPUnit": "~4.0" +# "phpunit/PHPUnit": "~4.5" BuildRequires: php-composer(%{gh_owner}/zend-serializer) >= 2.6 -BuildRequires: php-composer(%{gh_owner}/zend-session) >= 2.5 -BuildRequires: php-composer(phpunit/phpunit) >= 4.0 +BuildRequires: php-composer(%{gh_owner}/zend-session) >= 2.6.2 +BuildRequires: php-composer(phpunit/phpunit) >= 4.5 # Autoloader BuildRequires: php-composer(%{gh_owner}/zend-loader) >= 2.5 %endif @@ -71,6 +71,8 @@ Requires: php-composer(%{gh_owner}/zend-eventmanager) < 4 # "zendframework/zend-serializer": "Zend\\Serializer component", # "zendframework/zend-session": "Zend\\Session component", # "ext-apcu": "APCU, to use the APC storage adapter", +# "ext-apc": "APC or compatible extension, to use the APC storage adapter", +# "ext-apcu": "APCU >= 5.1.0, to use the APCu storage adapter", # "ext-dba": "DBA, to use the DBA storage adapter", # "ext-memcache": "Memcache >= 2.0.0 to use the Memcache storage adapter", # "ext-memcached": "Memcached >= 1.0.0 to use the Memcached storage adapter", @@ -168,6 +170,9 @@ rm -rf %{buildroot} %changelog +* Wed Apr 13 2016 Remi Collet - 2.7.0-1 +- update to 2.7.0 + * Sat Feb 13 2016 Remi Collet - 2.6.1-1 - update to 2.6.1 @@ -185,4 +190,4 @@ rm -rf %{buildroot} - add missing obsoletes * Tue Aug 4 2015 Remi Collet - 2.5.2-1 -- initial package \ No newline at end of file +- initial package -- cgit