Skip to content

Commit 9cc6c7a

Browse files
committed
updated
1 parent 7e2b198 commit 9cc6c7a

File tree

7 files changed

+7
-10
lines changed

7 files changed

+7
-10
lines changed

.gitattributes

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
# Auto detect text files and perform LF normalization
2-
* text=auto
3-
41
/.gitattributes export-ignore
52
/.gitignore export-ignore
63
/.travis.yml export-ignore

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2018-2019 Yuuki Takezawa
3+
Copyright (c) 2018-2020 Yuuki Takezawa
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@
2020
}
2121
],
2222
"require": {
23-
"hhvm": "^4.35",
23+
"hhvm": "^4.41",
2424
"hhvm/hsl": "^4.0",
2525
"hhvm/hsl-experimental": "^4.0",
2626
"hhvm/hhvm-autoload": "^3.0",
27-
"facebook/hack-http-request-response-interfaces": "^0.2"
27+
"facebook/hack-http-request-response-interfaces": "^0.3"
2828
},
2929
"require-dev": {
3030
"hhvm/hacktest": "^2.0",

src/AsyncMiddlewareInterface.hack

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616
namespace Nazg\Http\Server;
1717

18-
use type HH\Lib\Experimental\IO\CloseableWriteHandle;
18+
use type HH\Lib\IO\CloseableWriteHandle;
1919
use type Facebook\Experimental\Http\Message\ResponseInterface;
2020
use type Facebook\Experimental\Http\Message\ServerRequestInterface;
2121

src/AsyncRequestHandlerInterface.hack

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616
namespace Nazg\Http\Server;
1717

18-
use type HH\Lib\Experimental\IO\CloseableWriteHandle;
18+
use type HH\Lib\IO\CloseableWriteHandle;
1919
use type Facebook\Experimental\Http\Message\ResponseInterface;
2020
use type Facebook\Experimental\Http\Message\ServerRequestInterface;
2121

src/MiddlewareInterface.hack

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616
namespace Nazg\Http\Server;
1717

18-
use type HH\Lib\Experimental\IO\CloseableWriteHandle;
18+
use type HH\Lib\IO\CloseableWriteHandle;
1919
use type Facebook\Experimental\Http\Message\ResponseInterface;
2020
use type Facebook\Experimental\Http\Message\ServerRequestInterface;
2121

src/RequestHandlerInterface.hack

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616
namespace Nazg\Http\Server;
1717

18-
use type HH\Lib\Experimental\IO\CloseableWriteHandle;
18+
use type HH\Lib\IO\CloseableWriteHandle;
1919
use type Facebook\Experimental\Http\Message\ResponseInterface;
2020
use type Facebook\Experimental\Http\Message\ServerRequestInterface;
2121

0 commit comments

Comments
 (0)