Skip to content

Commit 7ebd31b

Browse files
committed
Updated dependencies
1 parent 6421602 commit 7ebd31b

File tree

3 files changed

+13
-8
lines changed

3 files changed

+13
-8
lines changed

vendor/composer/installed.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -171,24 +171,24 @@
171171
},
172172
{
173173
"name": "psr/http-factory",
174-
"version": "1.0.0",
175-
"version_normalized": "1.0.0.0",
174+
"version": "1.0.1",
175+
"version_normalized": "1.0.1.0",
176176
"source": {
177177
"type": "git",
178178
"url": "https://github.com/php-fig/http-factory.git",
179-
"reference": "378bfe27931ecc54ff824a20d6f6bfc303bbd04c"
179+
"reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
180180
},
181181
"dist": {
182182
"type": "zip",
183-
"url": "https://api.github.com/repos/php-fig/http-factory/zipball/378bfe27931ecc54ff824a20d6f6bfc303bbd04c",
184-
"reference": "378bfe27931ecc54ff824a20d6f6bfc303bbd04c",
183+
"url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
184+
"reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
185185
"shasum": ""
186186
},
187187
"require": {
188188
"php": ">=7.0.0",
189189
"psr/http-message": "^1.0"
190190
},
191-
"time": "2018-07-30T21:54:04+00:00",
191+
"time": "2019-04-30T12:38:16+00:00",
192192
"type": "library",
193193
"extra": {
194194
"branch-alias": {

vendor/psr/http-factory/README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
HTTP Factories
22
==============
33

4-
This is the implementation of [PSR-17 (HTTP Message Factories)][psr-17]. Please refer to the
5-
specification for a description.
4+
This repository holds all interfaces related to [PSR-17 (HTTP Message Factories)][psr-17].
5+
Please refer to the specification for a description.
6+
7+
You can find implementations of the specification by looking for packages providing the
8+
[psr/http-factory-implementation](https://packagist.org/providers/psr/http-factory-implementation) virtual package.
69

710
[psr-17]: https://www.php-fig.org/psr/psr-17/

vendor/psr/http-factory/src/StreamFactoryInterface.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ public function createStream(string $content = ''): StreamInterface;
2727
* @param string $mode Mode with which to open the underlying filename/stream.
2828
*
2929
* @return StreamInterface
30+
* @throws \RuntimeException If the file cannot be opened.
31+
* @throws \InvalidArgumentException If the mode is invalid.
3032
*/
3133
public function createStreamFromFile(string $filename, string $mode = 'r'): StreamInterface;
3234

0 commit comments

Comments
 (0)