Skip to content

Commit b808928

Browse files
committed
Update dependencies
1 parent caf2555 commit b808928

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

composer.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@
33
"description": "Socket client for PHP-HTTP",
44
"require": {
55
"php": ">=5.4",
6-
"symfony/options-resolver": "^2.7",
7-
"php-http/httplug": "^1.0@dev",
8-
"php-http/message-factory": "^0.4@dev"
6+
"symfony/options-resolver": "^2.3|^3.0",
7+
"php-http/httplug": "1.0.0-beta",
8+
"php-http/message-factory": "^1.0"
99
},
1010
"require-dev": {
1111
"phpunit/phpunit": "^4.8",
1212
"guzzlehttp/psr7": "^1.2",
13-
"php-http/discovery": "^0.2",
14-
"php-http/adapter-integration-tests": "^0.2",
15-
"php-http/utils": "^0.1@dev"
13+
"php-http/discovery": "^0.4@dev",
14+
"php-http/adapter-integration-tests": "dev-master",
15+
"php-http/utils": "^0.2@dev"
1616
},
1717
"autoload": {
1818
"psr-4": {
@@ -36,7 +36,7 @@
3636
},
3737
"extra": {
3838
"branch-alias": {
39-
"dev-master": "0.1-dev"
39+
"dev-master": "0.2-dev"
4040
}
4141
},
4242
"prefer-stable": true,

tests/SocketHttpAdapterTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
namespace Http\Socket\Tests;
44

55
use Http\Client\Tests\HttpClientTest;
6-
use Http\Discovery\MessageFactory\GuzzleFactory;
6+
use Http\Client\Utils\MessageFactory\GuzzleMessageFactory;
77
use Http\Socket\SocketHttpClient;
88

99
class SocketHttpAdapterTest extends HttpClientTest
@@ -13,6 +13,6 @@ class SocketHttpAdapterTest extends HttpClientTest
1313
*/
1414
protected function createHttpAdapter()
1515
{
16-
return new SocketHttpClient(new GuzzleFactory());
16+
return new SocketHttpClient(new GuzzleMessageFactory());
1717
}
1818
}

tests/SocketHttpClientTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
namespace Http\Socket\Tests;
44

55
use Http\Client\Utils\HttpMethodsClient;
6-
use Http\Discovery\MessageFactory\GuzzleFactory;
6+
use Http\Client\Utils\MessageFactory\GuzzleMessageFactory;
77
use Http\Socket\SocketHttpClient;
88

99
class SocketHttpClientTest extends BaseTestCase
1010
{
1111
public function createClient($options = array())
1212
{
13-
$messageFactory = new GuzzleFactory();
13+
$messageFactory = new GuzzleMessageFactory();
1414

1515
return new HttpMethodsClient(new SocketHttpClient($messageFactory, $options), $messageFactory);
1616
}

0 commit comments

Comments
 (0)