Skip to content
This repository has been archived by the owner on Jan 29, 2020. It is now read-only.

Commit

Permalink
Merge branch 'feature/23' into develop, Close #23, Close #47
Browse files Browse the repository at this point in the history
  • Loading branch information
marc-mabe committed Mar 14, 2016
2 parents cd6c66b + e86adfe commit 2cd809d
Show file tree
Hide file tree
Showing 9 changed files with 1,029 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ services:
env:
global:
- TESTS_ZEND_CACHE_APC_ENABLED: true
- TESTS_ZEND_CACHE_APCU_ENABLED=true
- TESTS_ZEND_CACHE_MEMCACHED_ENABLED: true
- TESTS_ZEND_CACHE_MEMCACHED_HOST: "127.0.0.1"
- TESTS_ZEND_CACHE_MEMCACHED_PORT: 11211
Expand Down Expand Up @@ -72,6 +73,7 @@ matrix:
- INSTALL_XCACHE=true
- php: 7
env:
- EXECUTE_TEST_COVERALLS=true
- PECL_INSTALL_APCU='apcu'
- PECL_INSTALL_APCU_BC='apcu_bc-beta'
- php: 7
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ All notable changes to this project will be documented in this file, in reverse

### Added

- [#23](https://github.com/zendframework/zend-cache/issues/23)
[#47](https://github.com/zendframework/zend-cache/issues/47)
Added an Apcu storage adapter as future replacement for Apc
- [#63](https://github.com/zendframework/zend-cache/pull/63)
Implemented ClearByNamespaceInterface in Stoage\Adapter\Redis

Expand Down
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@
"suggest": {
"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",
Expand Down
1 change: 1 addition & 0 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
constants appropriate to the component you are migrating. -->

<env name="TESTS_ZEND_CACHE_APC_ENABLED" value="false" />
<env name="TESTS_ZEND_CACHE_APCU_ENABLED" value="false" />
<env name="TESTS_ZEND_CACHE_XCACHE_ENABLED" value="false" />
<env name="TESTS_ZEND_CACHE_XCACHE_ADMIN_AUTH" value="false" />
<env name="TESTS_ZEND_CACHE_XCACHE_ADMIN_USER" value="" />
Expand Down
Loading

0 comments on commit 2cd809d

Please sign in to comment.