Skip to content

Commit c5e95fd

Browse files
committed
Merge pull request #31 from cheprasov/dev-with-versions
v1.1.0
2 parents d774e6b + a8f1afa commit c5e95fd

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[![MIT license](http://img.shields.io/badge/license-MIT-brightgreen.svg)](http://opensource.org/licenses/MIT)
22

3-
# RedisClient v1.0.0 for PHP >= 5.5
3+
# RedisClient v1.1.0 for PHP >= 5.5
44

55
## About
66
RedisClient is a fast, fully-functional and user-friendly client for Redis, optimized for performance. RedisClient supports latests versions of Redis starting from 2.6

tests/Build/VersionTest.php

+3
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ public function test_version() {
2020

2121
$this->assertSame(true, isset($composer['version']));
2222
$this->assertSame(AbstractRedisClient::VERSION, $composer['version']);
23+
24+
$readme = file('./README.md');
25+
$this->assertSame(true, strpos($readme[2], 'RedisClient v'.$composer['version']) > 0);
2326
}
2427

2528
}

0 commit comments

Comments
 (0)