File tree Expand file tree Collapse file tree 6 files changed +21
-14
lines changed
Expand file tree Collapse file tree 6 files changed +21
-14
lines changed Original file line number Diff line number Diff line change 11# Change Log
22
33
4+ ## 0.5.0 - 2015-12-25
5+
6+ ### Changed
7+
8+ - Updated message factory dependency (php-http/message)
9+
10+
411## 0.4.0 - 2015-12-17
512
613### Added
Original file line number Diff line number Diff line change 1919 "php-http/message-factory" : " ^1.0"
2020 },
2121 "require-dev" : {
22- "php-http/utils " : " ^0.2 " ,
22+ "php-http/message " : " ^0.1 " ,
2323 "zendframework/zend-diactoros" : " ^1.0" ,
2424 "guzzlehttp/psr7" : " ^1.0" ,
2525 "php-http/guzzle6-adapter" : " ^0.2" ,
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ public static function find()
1818 return parent ::find ();
1919 } catch (NotFoundException $ e ) {
2020 throw new NotFoundException (
21- 'No factories found. Install php-http/utils >= 0.2 to use Guzzle or Diactoros factories. ' ,
21+ 'No factories found. Install php-http/message to use Guzzle or Diactoros factories. ' ,
2222 0 ,
2323 $ e
2424 );
Original file line number Diff line number Diff line change @@ -21,16 +21,16 @@ final class MessageFactoryDiscovery extends FactoryDiscovery
2121 */
2222 protected static $ classes = [
2323 'guzzle ' => [
24- 'class ' => 'Http\Client\Utils \MessageFactory\GuzzleMessageFactory ' ,
24+ 'class ' => 'Http\Message \MessageFactory\GuzzleMessageFactory ' ,
2525 'condition ' => [
26- 'Http\Client\Utils \MessageFactory\GuzzleMessageFactory ' ,
26+ 'Http\Message \MessageFactory\GuzzleMessageFactory ' ,
2727 'GuzzleHttp\Psr7\Request ' ,
2828 ],
2929 ],
3030 'diactoros ' => [
31- 'class ' => 'Http\Client\Utils \MessageFactory\DiactorosMessageFactory ' ,
31+ 'class ' => 'Http\Message \MessageFactory\DiactorosMessageFactory ' ,
3232 'condition ' => [
33- 'Http\Client\Utils \MessageFactory\DiactorosMessageFactory ' ,
33+ 'Http\Message \MessageFactory\DiactorosMessageFactory ' ,
3434 'Zend\Diactoros\Request ' ,
3535 ],
3636 ],
Original file line number Diff line number Diff line change @@ -21,16 +21,16 @@ final class StreamFactoryDiscovery extends FactoryDiscovery
2121 */
2222 protected static $ classes = [
2323 'guzzle ' => [
24- 'class ' => 'Http\Client\Utils \StreamFactory\GuzzleStreamFactory ' ,
24+ 'class ' => 'Http\Message \StreamFactory\GuzzleStreamFactory ' ,
2525 'condition ' => [
26- 'Http\Client\Utils \StreamFactory\GuzzleStreamFactory ' ,
26+ 'Http\Message \StreamFactory\GuzzleStreamFactory ' ,
2727 'GuzzleHttp\Psr7\Stream ' ,
2828 ],
2929 ],
3030 'diactoros ' => [
31- 'class ' => 'Http\Client\Utils \StreamFactory\DiactorosStreamFactory ' ,
31+ 'class ' => 'Http\Message \StreamFactory\DiactorosStreamFactory ' ,
3232 'condition ' => [
33- 'Http\Client\Utils \StreamFactory\DiactorosStreamFactory ' ,
33+ 'Http\Message \StreamFactory\DiactorosStreamFactory ' ,
3434 'Zend\Diactoros\Stream ' ,
3535 ],
3636 ],
Original file line number Diff line number Diff line change @@ -21,16 +21,16 @@ final class UriFactoryDiscovery extends FactoryDiscovery
2121 */
2222 protected static $ classes = [
2323 'guzzle ' => [
24- 'class ' => 'Http\Client\Utils \UriFactory\GuzzleUriFactory ' ,
24+ 'class ' => 'Http\Message \UriFactory\GuzzleUriFactory ' ,
2525 'condition ' => [
26- 'Http\Client\Utils \UriFactory\GuzzleUriFactory ' ,
26+ 'Http\Message \UriFactory\GuzzleUriFactory ' ,
2727 'GuzzleHttp\Psr7\Uri ' ,
2828 ],
2929 ],
3030 'diactoros ' => [
31- 'class ' => 'Http\Client\Utils \UriFactory\DiactorosUriFactory ' ,
31+ 'class ' => 'Http\Message \UriFactory\DiactorosUriFactory ' ,
3232 'condition ' => [
33- 'Http\Client\Utils \UriFactory\DiactorosUriFactory ' ,
33+ 'Http\Message \UriFactory\DiactorosUriFactory ' ,
3434 'Zend\Diactoros\Uri ' ,
3535 ],
3636 ],
You can’t perform that action at this time.
0 commit comments