Skip to content

Commit eeaa5ac

Browse files
committed
Moved package into dedicated org
1 parent 463a28f commit eeaa5ac

File tree

8 files changed

+18
-17
lines changed

8 files changed

+18
-17
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# ReactPHP Parallel Contracts
22

3-
[![Latest Stable Version](https://poser.pugx.org/WyriHaximus/react-parallel-contracts/v/stable.png)](https://packagist.org/packages/WyriHaximus/react-parallel-contracts)
4-
[![Total Downloads](https://poser.pugx.org/WyriHaximus/react-parallel-contracts/downloads.png)](https://packagist.org/packages/WyriHaximus/react-parallel-contracts)
5-
[![License](https://poser.pugx.org/wyrihaximus/react-parallel-contracts/license.png)](https://packagist.org/packages/wyrihaximus/react-parallel-contracts)
3+
[![Latest Stable Version](https://poser.pugx.org/react-parallel/contracts/v/stable.png)](https://packagist.org/packages/react-parallel/contracts)
4+
[![Total Downloads](https://poser.pugx.org/react-parallel/contracts/downloads.png)](https://packagist.org/packages/react-parallel/contracts)
5+
[![License](https://poser.pugx.org/react-parallel/contracts/license.png)](https://packagist.org/packages/react-parallel/contracts)
66

77
Interfaces for ReactPHP ext-parallel related packages
88

@@ -11,7 +11,7 @@ Interfaces for ReactPHP ext-parallel related packages
1111
To install via [Composer](http://getcomposer.org/), use the command below, it will automatically detect the latest version and bind it with `~`.
1212

1313
```
14-
composer require wyrihaximus/react-parallel-contracts
14+
composer require react-parallel/contracts
1515
```
1616

1717
## License ##

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "wyrihaximus/react-parallel-contracts",
2+
"name": "react-parallel/contracts",
33
"description": "Interfaces for ReactPHP ext-parallel related packages",
44
"license": "MIT",
55
"authors": [
@@ -22,7 +22,7 @@
2222
},
2323
"autoload": {
2424
"psr-4": {
25-
"WyriHaximus\\React\\Parallel\\": "src/"
25+
"ReactParallel\\Contracts\\": "src/"
2626
}
2727
}
2828
}

composer.lock

Lines changed: 7 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/ClosedException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php declare(strict_types=1);
22

3-
namespace WyriHaximus\React\Parallel;
3+
namespace ReactParallel\Contracts;
44

55
final class ClosedException extends \Exception
66
{

src/ClosingException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php declare(strict_types=1);
22

3-
namespace WyriHaximus\React\Parallel;
3+
namespace ReactParallel\Contracts;
44

55
final class ClosingException extends \Exception
66
{

src/GroupInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php declare(strict_types=1);
22

3-
namespace WyriHaximus\React\Parallel;
3+
namespace ReactParallel\Contracts;
44

55
interface GroupInterface
66
{

src/LowLevelPoolInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php declare(strict_types=1);
22

3-
namespace WyriHaximus\React\Parallel;
3+
namespace ReactParallel\Contracts;
44

55
interface LowLevelPoolInterface extends PoolInterface
66
{

src/PoolInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php declare(strict_types=1);
22

3-
namespace WyriHaximus\React\Parallel;
3+
namespace ReactParallel\Contracts;
44

55
use Closure;
66
use React\Promise\PromiseInterface;

0 commit comments

Comments
 (0)