Skip to content

Commit 4ed3b8b

Browse files
committed
Bumped version
2 parents bd07bc0 + bb3eae9 commit 4ed3b8b

File tree

6 files changed

+2067
-30
lines changed

6 files changed

+2067
-30
lines changed

CHANGELOG.md

Lines changed: 95 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file, in reverse chronological order by release.
4+
5+
## 1.1.0 - 2018-08-28
6+
7+
### Added
8+
9+
- Nothing.
10+
11+
### Changed
12+
13+
- Nothing.
14+
15+
### Deprecated
16+
17+
- Nothing.
18+
19+
### Removed
20+
21+
- [#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.
22+
23+
### Fixed
24+
25+
- [#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.
26+
27+
## 1.0.2 - 2014-07-09
28+
29+
### Added
30+
31+
- `ext-redis` as dependency to `composer.json`
32+
33+
### Changed
34+
35+
- Nothing.
36+
37+
### Deprecated
38+
39+
- Nothing.
40+
41+
### Removed
42+
43+
- Nothing.
44+
45+
### Fixed
46+
47+
- Nothing.
48+
49+
## 1.0.1 - 2014-07-09
50+
51+
Improve `README.md` and License info
52+
53+
### Added
54+
55+
- Nothing.
56+
57+
### Changed
58+
59+
- Nothing.
60+
61+
### Deprecated
62+
63+
- Nothing.
64+
65+
### Removed
66+
67+
- Nothing.
68+
69+
### Fixed
70+
71+
- Nothing.
72+
73+
## 1.0.0 - 2014-07-09
74+
75+
Initial version of smoke/zf2-cache-storage-redis-array
76+
77+
### Added
78+
79+
- Nothing.
80+
81+
### Changed
82+
83+
- Nothing.
84+
85+
### Deprecated
86+
87+
- Nothing.
88+
89+
### Removed
90+
91+
- Nothing.
92+
93+
### Fixed
94+
95+
- Nothing.

composer.json

Lines changed: 28 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,27 +3,48 @@
33
"description": "RedisArray Cache Storage for Zend Framework 2",
44
"type": "library",
55
"keywords": [
6-
"zf2", "redis", "redisArray", "cache"
6+
"zf2",
7+
"redis",
8+
"redisArray",
9+
"cache"
710
],
811
"license": "MIT",
912
"homepage": "https://github.com/smoke/zf2-cache-storage-redis-array",
1013
"authors": [
1114
{
1215
"name": "Radoslav Kirilov",
1316
"email": "rkirilow@gmail.com"
17+
},
18+
{
19+
"name": "Maximilian Bösing",
20+
"email": "max@boesing.email"
1421
}
1522
],
1623
"require": {
17-
"php": ">=5.3.23",
18-
"zendframework/zend-cache": "2.*",
19-
"ext-redis": "*"
24+
"php": "^5.5 || ^7.0",
25+
"ext-redis": "*",
26+
"zendframework/zend-cache": "^2.0"
2027
},
2128
"autoload": {
2229
"psr-0": {
2330
"Smoke\\": "src/"
24-
},
25-
"classmap": [
26-
"./"
31+
}
32+
},
33+
"autoload-dev": {
34+
"psr-0": {
35+
"SmokeTest\\": "test/"
36+
}
37+
},
38+
"require-dev": {
39+
"phpunit/phpunit": "^7.3"
40+
},
41+
"archive": {
42+
"exclude": [
43+
"test/",
44+
"phpunit.xml.dist"
2745
]
46+
},
47+
"config": {
48+
"sort-packages": true
2849
}
2950
}

0 commit comments

Comments
 (0)