Skip to content

Commit 53d306c

Browse files
author
Designcise
committed
Updated HttpMessageFactory to reflect latest changes introduced in PSR-17 http-factory v0.4
1 parent e72357b commit 53d306c

File tree

1 file changed

+19
-11
lines changed

1 file changed

+19
-11
lines changed

composer.json

Lines changed: 19 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "designcise/bitframe",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"description": "PHP PSR-15 / PSR-7 middleware dispatcher microframework",
55
"type": "library",
66
"keywords": ["Designcise", "BitFrame", "Microframework", "Framework", "Middleware Dispatcher", "PSR-7", "PSR-15"],
@@ -17,26 +17,34 @@
1717
"psr/http-server-handler": "~1.0",
1818
"psr/http-server-middleware": "~1.0",
1919
"fig/http-message-util": "^1.0",
20-
"http-interop/http-factory": "^0.3"
21-
},
22-
"require-dev": {
23-
"phpunit/phpunit": "^6.4"
24-
},
25-
"suggest": {
26-
"designcise/bitframe-whoops": "Whoops error handler middleware for BitFrame microframework",
27-
"designcise/bitframe-diactoros": "Zend Diactoros HTTP message middleware for BitFrame microframework",
28-
"designcise/bitframe-fastroute": "Fastroute router middleware for BitFrame microframework",
29-
"designcise/bitframe-leagueplates": "League Plates template renderer for BitFrame microframework"
20+
"http-interop/http-factory": "^0.4"
3021
},
3122
"autoload": {
23+
"files": [
24+
"src/Factory/functions/marshal_headers_from_sapi.php",
25+
"src/Factory/functions/marshal_method_from_sapi.php",
26+
"src/Factory/functions/marshal_protocol_version_from_sapi.php",
27+
"src/Factory/functions/marshal_uri_from_sapi.php"
28+
],
3229
"psr-4": {
3330
"BitFrame\\": "src/"
3431
}
3532
},
33+
34+
"require-dev": {
35+
"phpunit/phpunit": "^6.4"
36+
},
3637
"autoload-dev": {
3738
"psr-4": {
3839
"BitFrame\\Test\\": "test/"
3940
},
4041
"files": ["test/Asset/function.php"]
42+
},
43+
44+
"suggest": {
45+
"designcise/bitframe-whoops": "Whoops error handler middleware for BitFrame microframework",
46+
"designcise/bitframe-diactoros": "Zend Diactoros HTTP message middleware for BitFrame microframework",
47+
"designcise/bitframe-fastroute": "Fastroute router middleware for BitFrame microframework",
48+
"designcise/bitframe-leagueplates": "League Plates template renderer for BitFrame microframework"
4149
}
4250
}

0 commit comments

Comments
 (0)