Skip to content

Commit b4776b1

Browse files
committed
Merge pull request #9 from LeeSaferite/master
Updated composer.json to allow usage with symfony 3.x
2 parents e4be41b + f852aca commit b4776b1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
],
1414
"require": {
1515
"php": ">=5.3.0",
16-
"symfony/console": "~2.4",
16+
"symfony/console": "^2.4 || ^3.0",
1717
"guzzle/guzzle": "~3.8"
1818
},
1919
"require-dev": {

tests/LinkORB/Tests/Component/Etcd/ClientTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ protected function tearDown()
3333
public function testDoRequest()
3434
{
3535
$version = $this->client->doRequest('/version');
36-
$this->assertArrayHasKey('releaseVersion', json_decode($version, true));
36+
$this->assertArrayHasKey('etcdserver', json_decode($version, true));
3737
}
3838

3939
/**

0 commit comments

Comments
 (0)