Skip to content

Commit 172cdfd

Browse files
committed
changed namespace
1 parent d426f70 commit 172cdfd

11 files changed

+21
-21
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Nazg\HackHttpExecutor
1+
# Nazg\HttpExecutor
22

3-
[![Build Status](https://travis-ci.org/nazg-hack/hack-http-executor.svg?branch=master)](https://travis-ci.org/nazg-hack/hack-http-executor)
3+
[![Build Status](https://travis-ci.org/nazg-hack/http-executor.svg?branch=master)](https://travis-ci.org/nazg-hack/http-executor)
44

55
This library provides utilities for:
66

@@ -16,7 +16,7 @@ HHVM 3.30.0 and above.
1616
## Installation
1717

1818
```bash
19-
hhvm $(which composer) require nazg-hack/hack-http-executor
19+
hhvm $(which composer) require nazg-hack/http-executor
2020
```
2121

2222
## Usage
@@ -25,8 +25,8 @@ hhvm $(which composer) require nazg-hack/hack-http-executor
2525
<?hh //strict
2626
2727
use type Ytake\Hungrr\ServerRequestFactory;
28-
use type Nazg\HackHttpExecutor\RequestHandleExecutor;
29-
use type Nazg\HackHttpExecutor\Emitter\SapiEmitter;
28+
use type Nazg\HttpExecutor\RequestHandleExecutor;
29+
use type Nazg\HttpExecutor\Emitter\SapiEmitter;
3030
use namespace HH\Lib\Experimental\IO;
3131
3232
<<__EntryPoint>>

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "nazg-hack/hack-http-executor",
2+
"name": "nazg-hack/http-executor",
33
"description": "HTTP Component and Emit Responses",
44
"minimum-stability": "stable",
55
"type": "library",
@@ -32,7 +32,7 @@
3232
},
3333
"autoload": {
3434
"psr-4": {
35-
"Nazg\\HackHttpExecutor\\": "src/"
35+
"Nazg\\HttpExecutor\\": "src/"
3636
}
3737
},
3838
"autoload-dev": {

src/Emitter/EmitterInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* Copyright (c) 2018-2019 Yuuki Takezawa
1616
*
1717
*/
18-
namespace Nazg\HackHttpExecutor\Emitter;
18+
namespace Nazg\HttpExecutor\Emitter;
1919

2020
use type HH\Lib\Experimental\IO\ReadHandle;
2121
use type Facebook\Experimental\Http\Message\ResponseInterface;

src/Emitter/EmitterStack.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* Copyright (c) 2018-2019 Yuuki Takezawa
1616
*
1717
*/
18-
namespace Nazg\HackHttpExecutor\Emitter;
18+
namespace Nazg\HttpExecutor\Emitter;
1919

2020
use type SplStack;
2121
use type HH\Lib\Experimental\IO\ReadHandle;

src/Emitter/SapiEmitter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* Copyright (c) 2018-2019 Yuuki Takezawa
1616
*
1717
*/
18-
namespace Nazg\HackHttpExecutor\Emitter;
18+
namespace Nazg\HttpExecutor\Emitter;
1919

2020
use type HH\Lib\Experimental\IO\ReadHandle;
2121
use type Facebook\Experimental\Http\Message\ResponseInterface;

src/Emitter/SapiEmitterTrait.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515
* Copyright (c) 2018-2019 Yuuki Takezawa
1616
*
1717
*/
18-
namespace Nazg\HackHttpExecutor\Emitter;
18+
namespace Nazg\HttpExecutor\Emitter;
1919

20-
use type Nazg\HackHttpExecutor\Emitter\EmitterInterface;
21-
use type Nazg\HackHttpExecutor\Exception\EmitterException;
20+
use type Nazg\HttpExecutor\Emitter\EmitterInterface;
21+
use type Nazg\HttpExecutor\Exception\EmitterException;
2222
use type Facebook\Experimental\Http\Message\ResponseInterface;
2323
use namespace HH\Lib\Str;
2424

src/Exception/EmitterException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* Copyright (c) 2018-2019 Yuuki Takezawa
1616
*
1717
*/
18-
namespace Nazg\HackHttpExecutor\Exception;
18+
namespace Nazg\HttpExecutor\Exception;
1919

2020
use type RuntimeException;
2121

src/RequestHandleExecutor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* Copyright (c) 2018-2019 Yuuki Takezawa
1616
*
1717
*/
18-
namespace Nazg\HackHttpExecutor;
18+
namespace Nazg\HttpExecutor;
1919

2020
use type Facebook\Experimental\Http\Message\ServerRequestInterface;
2121
use type Nazg\Http\Server\RequestHandlerInterface;

tests/EmitterStackTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
use type Ytake\Hungrr\Response;
44
use type Ytake\Hungrr\StatusCode;
55
use type Ytake\Hungrr\Response\TextResponse;
6-
use type Nazg\HackHttpExecutor\Emitter\SapiEmitter;
7-
use type Nazg\HackHttpExecutor\Emitter\EmitterStack;
6+
use type Nazg\HttpExecutor\Emitter\SapiEmitter;
7+
use type Nazg\HttpExecutor\Emitter\EmitterStack;
88
use type Facebook\HackTest\HackTest;
99
use namespace HH\Lib\Experimental\IO;
1010

tests/OverrideSapiEmitter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?hh // strict
22

3-
use type Nazg\HackHttpExecutor\Emitter\SapiEmitter;
3+
use type Nazg\HttpExecutor\Emitter\SapiEmitter;
44

55
use namespace HH\Lib\Str;
66

0 commit comments

Comments
 (0)