Skip to content

Commit 194f5cf

Browse files
committed
changed dependency
1 parent 8714f2e commit 194f5cf

22 files changed

+33
-36
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# Nazg Micro Framework Core Repository
22

3-
[![Packagist](https://img.shields.io/badge/HHVM-%3E=4.35-orange.svg?style=flat-square)](https://packagist.org/packages/nazg/framework)
3+
[![Packagist](https://img.shields.io/badge/HHVM-%3E=4.41-orange.svg?style=flat-square)](https://packagist.org/packages/nazg/framework)
44
[![Packagist](https://img.shields.io/packagist/l/nazg/framework.svg?style=flat-square)](https://packagist.org/packages/nazg/framework)
55
[![Build Status](http://img.shields.io/travis/nazg-hack/framework/master.svg?style=flat-square)](https://travis-ci.org/nazg-hack/framework)
66

77
Http Application / MicroFramework for HHVM/Hack
88

99
## Supported
1010

11-
HHVM 4.35 and above.
11+
HHVM 4.41 and above.
1212

1313
## Usage
1414

composer.json

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -16,22 +16,20 @@
1616
}
1717
],
1818
"require": {
19-
"hhvm": "^4.35",
19+
"hhvm": "^4.41",
2020
"hhvm/hsl": "^4.0",
21-
"hhvm/hsl-experimental": "^4.25",
21+
"hhvm/hsl-experimental": "^4.50",
2222
"hhvm/hhvm-autoload": "^3.0",
23-
"hhvm/type-assert": "^3.7",
24-
"hack-psr/psr7-http-message-hhi": "^1.0.0",
25-
"ytake/hungrr": "^0.9.0",
23+
"ytake/hungrr": "^0.10.0",
2624
"ytake/hhypermedia": "^0.5.0",
27-
"nazg/glue": "^1.4.0",
28-
"nazg/heredity": "^1.9",
25+
"nazg/glue": "^1.4",
26+
"nazg/heredity": "^1.10.0",
2927
"nazg/hcache": "^0.5.0",
30-
"nazg/http-server-request-handler": "^0.5",
31-
"nazg/http-executor": "^0.9",
32-
"facebook/hack-router": ">=0.17 <1.0",
33-
"facebook/hack-http-request-response-interfaces": "^0.2",
34-
"hack-logging/hack-logging": "^0.4.0"
28+
"nazg/http-server-request-handler": "^0.6.0",
29+
"nazg/http-executor": "^0.10.0",
30+
"facebook/hack-router": "^0.19.6",
31+
"facebook/hack-http-request-response-interfaces": "^0.3",
32+
"hack-logging/hack-logging": "^0.5.0"
3533
},
3634
"require-dev": {
3735
"facebook/fbexpect": "^2.6.1",

src/Exception/ExceptionHandler.hack

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,7 @@ use type Nazg\HttpExecutor\Emitter\EmitterInterface;
2020
use type Facebook\Experimental\Http\Message\ResponseInterface;
2121
use type Facebook\Experimental\Http\Message\UriInterface;
2222
use type Ytake\Hungrr\StatusCode;
23-
use namespace HH\Lib\{Dict, C};
24-
use namespace HH\Lib\Experimental\IO;
23+
use namespace HH\Lib\{Dict, C, IO};
2524
use function get_class;
2625
use function is_array;
2726
use function json_encode;

src/Exception/ExceptionHandlerProvider.hack

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ namespace Nazg\Exception;
1818
use type Nazg\Glue\Container;
1919
use type Nazg\Glue\ProviderInterface;
2020
use type Nazg\HttpExecutor\Emitter\EmitterInterface;
21-
use namespace HH\Lib\Experimental\IO;
21+
use namespace HH\Lib\IO;
2222

2323
class ExceptionHandlerProvider implements ProviderInterface<ExceptionHandleInterface> {
2424

src/Foundation/Application.hack

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ use type Nazg\Glue\Container;
2626
use type Nazg\HttpExecutor\AsyncRequestHandleExecutor;
2727

2828
use namespace Nazg\HttpExecutor\Emitter;
29-
use namespace HH\Lib\Experimental\IO;
29+
use namespace HH\Lib\IO;
3030
use namespace Nazg\Middleware;
3131
use namespace HH\Lib\Vec;
3232

src/Foundation/ApplicationProvider.hack

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ use type HackLogging\Logger;
2323
use namespace Nazg\Logger;
2424
use namespace Nazg\Exception;
2525
use namespace Nazg\HttpExecutor\Emitter;
26-
use namespace HH\Lib\Experimental\IO;
26+
use namespace HH\Lib\IO;
2727

2828
final class ApplicationProvider extends ServiceProvider {
2929

src/Http/VndErrorResponse.hack

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ namespace Nazg\Http;
1818
use type Ytake\Hungrr\Response\JsonResponse;
1919
use type Ytake\Hungrr\StatusCode;
2020
use type Ytake\Hungrr\Response\InjectContentTypeTrait;
21-
use namespace HH\Lib\Experimental\IO;
21+
use namespace HH\Lib\IO;
2222

2323
final class VndErrorResponse extends JsonResponse {
2424

src/Logger/LoggerProvider.hack

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ use type Nazg\Glue\ProviderInterface;
2020
use type Nazg\Foundation\ApplicationConfig;
2121
use type HackLogging\Logger;
2222
use type HackLogging\Handler\FilesystemHandler;
23-
use namespace HH\Lib\Experimental\File;
23+
use namespace HH\Lib\File;
2424

2525
final class LoggerProvider implements ProviderInterface<Logger> {
2626

src/Middleware/Dispatcher.hack

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

18-
use type HH\Lib\Experimental\IO\CloseableWriteHandle;
18+
use type HH\Lib\IO\CloseableWriteHandle;
1919
use type Nazg\Heredity\AsyncHeredity;
2020
use type Nazg\Glue\Container;
2121
use type Nazg\Http\Server\AsyncMiddlewareInterface;

src/Middleware/LogExceptionMiddleware.hack

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ namespace Nazg\Middleware;
1717

1818
use type HackLogging\Logger;
1919
use type HackLogging\LogLevel;
20-
use type HH\Lib\Experimental\IO\CloseableWriteHandle;
20+
use type HH\Lib\IO\CloseableWriteHandle;
2121
use type Facebook\Experimental\Http\Message\ResponseInterface;
2222
use type Facebook\Experimental\Http\Message\ServerRequestInterface;
2323
use type Nazg\Http\Server\AsyncMiddlewareInterface;

0 commit comments

Comments
 (0)