Skip to content

Commit

Permalink
Bumped version
Browse files Browse the repository at this point in the history
  • Loading branch information
boesing committed Aug 28, 2018
2 parents bd07bc0 + bb3eae9 commit 4ed3b8b
Show file tree
Hide file tree
Showing 6 changed files with 2,067 additions and 30 deletions.
95 changes: 95 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
# Changelog

All notable changes to this project will be documented in this file, in reverse chronological order by release.

## 1.1.0 - 2018-08-28

### Added

- Nothing.

### Changed

- Nothing.

### Deprecated

- Nothing.

### Removed

- [#1](https://github.com/smoke/zf2-cache-storage-redis-array/pull/1) removed support for PHP 5.3 and PHP 5.4 since these versions already reached their EOL in 2014 and 2015.

### Fixed

- [#1](https://github.com/smoke/zf2-cache-storage-redis-array/pull/1) fixes possible `null pointer` exceptions when calling methods which depend on the `RedisArrayResourceManager` which might not be initialized to that point.

## 1.0.2 - 2014-07-09

### Added

- `ext-redis` as dependency to `composer.json`

### Changed

- Nothing.

### Deprecated

- Nothing.

### Removed

- Nothing.

### Fixed

- Nothing.

## 1.0.1 - 2014-07-09

Improve `README.md` and License info

### Added

- Nothing.

### Changed

- Nothing.

### Deprecated

- Nothing.

### Removed

- Nothing.

### Fixed

- Nothing.

## 1.0.0 - 2014-07-09

Initial version of smoke/zf2-cache-storage-redis-array

### Added

- Nothing.

### Changed

- Nothing.

### Deprecated

- Nothing.

### Removed

- Nothing.

### Fixed

- Nothing.
35 changes: 28 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,27 +3,48 @@
"description": "RedisArray Cache Storage for Zend Framework 2",
"type": "library",
"keywords": [
"zf2", "redis", "redisArray", "cache"
"zf2",
"redis",
"redisArray",
"cache"
],
"license": "MIT",
"homepage": "https://github.com/smoke/zf2-cache-storage-redis-array",
"authors": [
{
"name": "Radoslav Kirilov",
"email": "rkirilow@gmail.com"
},
{
"name": "Maximilian Bösing",
"email": "max@boesing.email"
}
],
"require": {
"php": ">=5.3.23",
"zendframework/zend-cache": "2.*",
"ext-redis": "*"
"php": "^5.5 || ^7.0",
"ext-redis": "*",
"zendframework/zend-cache": "^2.0"
},
"autoload": {
"psr-0": {
"Smoke\\": "src/"
},
"classmap": [
"./"
}
},
"autoload-dev": {
"psr-0": {
"SmokeTest\\": "test/"
}
},
"require-dev": {
"phpunit/phpunit": "^7.3"
},
"archive": {
"exclude": [
"test/",
"phpunit.xml.dist"
]
},
"config": {
"sort-packages": true
}
}
Loading

0 comments on commit 4ed3b8b

Please sign in to comment.