diff --git a/composer.json b/composer.json index 8da09ee..8e1ebe2 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { "name": "next/http-server", "license": "Apache-2.0", - "homepage": "https://github.com/marxphp/http-server", + "homepage": "https://github.com/next-laboratory/http-server", "autoload": { "psr-4": { "Next\\Http\\Server\\": "src/" diff --git a/src/Contract/ResponseEmitterInterface.php b/src/Contract/ResponseEmitterInterface.php index cbb95ed..449774b 100644 --- a/src/Contract/ResponseEmitterInterface.php +++ b/src/Contract/ResponseEmitterInterface.php @@ -5,7 +5,7 @@ /** * This file is part of nextphp. * - * @link https://github.com/marxphp + * @link https://github.com/next-laboratory * @license https://github.com/next-laboratory/next/blob/master/LICENSE */ diff --git a/src/Contract/RouteDispatcherInterface.php b/src/Contract/RouteDispatcherInterface.php index a9eb14e..f9ce147 100644 --- a/src/Contract/RouteDispatcherInterface.php +++ b/src/Contract/RouteDispatcherInterface.php @@ -5,7 +5,7 @@ /** * This file is part of nextphp. * - * @link https://github.com/marxphp + * @link https://github.com/next-laboratory * @license https://github.com/next-laboratory/next/blob/master/LICENSE */ diff --git a/src/Event/OnRequest.php b/src/Event/OnRequest.php index c4d9708..66a81b4 100644 --- a/src/Event/OnRequest.php +++ b/src/Event/OnRequest.php @@ -5,7 +5,7 @@ /** * This file is part of nextphp. * - * @link https://github.com/marxphp + * @link https://github.com/next-laboratory * @license https://github.com/next-laboratory/next/blob/master/LICENSE */ diff --git a/src/Exception/CSRFException.php b/src/Exception/CSRFException.php index be91f6b..46f358f 100755 --- a/src/Exception/CSRFException.php +++ b/src/Exception/CSRFException.php @@ -5,7 +5,7 @@ /** * This file is part of nextphp. * - * @link https://github.com/marxphp + * @link https://github.com/next-laboratory * @license https://github.com/next-laboratory/next/blob/master/LICENSE */ diff --git a/src/Kernel.php b/src/Kernel.php index 6181800..60db212 100644 --- a/src/Kernel.php +++ b/src/Kernel.php @@ -5,7 +5,7 @@ /** * This file is part of nextphp. * - * @link https://github.com/marxphp + * @link https://github.com/next-laboratory * @license https://github.com/next-laboratory/next/blob/master/LICENSE */ diff --git a/src/Middleware/CORSMiddleware.php b/src/Middleware/CORSMiddleware.php index 5cf3c2d..a6d8f3c 100644 --- a/src/Middleware/CORSMiddleware.php +++ b/src/Middleware/CORSMiddleware.php @@ -5,7 +5,7 @@ /** * This file is part of nextphp. * - * @link https://github.com/marxphp + * @link https://github.com/next-laboratory * @license https://github.com/next-laboratory/next/blob/master/LICENSE */ diff --git a/src/Middleware/ExceptionHandleMiddleware.php b/src/Middleware/ExceptionHandleMiddleware.php index 3b710da..566fb35 100644 --- a/src/Middleware/ExceptionHandleMiddleware.php +++ b/src/Middleware/ExceptionHandleMiddleware.php @@ -5,7 +5,7 @@ /** * This file is part of MarxPHP. * - * @link https://github.com/marxphp + * @link https://github.com/next-laboratory * @license https://github.com/next-laboratory/next/blob/master/LICENSE */ diff --git a/src/Middleware/RoutingMiddleware.php b/src/Middleware/RoutingMiddleware.php index 37d5956..5210f6d 100644 --- a/src/Middleware/RoutingMiddleware.php +++ b/src/Middleware/RoutingMiddleware.php @@ -5,7 +5,7 @@ /** * This file is part of nextphp. * - * @link https://github.com/marxphp + * @link https://github.com/next-laboratory * @license https://github.com/next-laboratory/next/blob/master/LICENSE */ diff --git a/src/Middleware/VerifyCSRFToken.php b/src/Middleware/VerifyCSRFToken.php index 19cbe15..ade57ec 100644 --- a/src/Middleware/VerifyCSRFToken.php +++ b/src/Middleware/VerifyCSRFToken.php @@ -5,7 +5,7 @@ /** * This file is part of nextphp. * - * @link https://github.com/marxphp + * @link https://github.com/next-laboratory * @license https://github.com/next-laboratory/next/blob/master/LICENSE */ diff --git a/src/RequestHandler.php b/src/RequestHandler.php index 426b7c1..53306fb 100644 --- a/src/RequestHandler.php +++ b/src/RequestHandler.php @@ -5,7 +5,7 @@ /** * This file is part of nextphp. * - * @link https://github.com/marxphp + * @link https://github.com/next-laboratory * @license https://github.com/next-laboratory/next/blob/master/LICENSE */ diff --git a/src/ResponseEmitter/FPMResponseEmitter.php b/src/ResponseEmitter/FPMResponseEmitter.php index 4422aca..012f251 100644 --- a/src/ResponseEmitter/FPMResponseEmitter.php +++ b/src/ResponseEmitter/FPMResponseEmitter.php @@ -5,7 +5,7 @@ /** * This file is part of nextphp. * - * @link https://github.com/marxphp + * @link https://github.com/next-laboratory * @license https://github.com/next-laboratory/next/blob/master/LICENSE */ diff --git a/src/ResponseEmitter/SwooleResponseEmitter.php b/src/ResponseEmitter/SwooleResponseEmitter.php index beef420..189a0f6 100644 --- a/src/ResponseEmitter/SwooleResponseEmitter.php +++ b/src/ResponseEmitter/SwooleResponseEmitter.php @@ -5,7 +5,7 @@ /** * This file is part of nextphp. * - * @link https://github.com/marxphp + * @link https://github.com/next-laboratory * @license https://github.com/next-laboratory/next/blob/master/LICENSE */ diff --git a/src/ResponseEmitter/WorkerManResponseEmitter.php b/src/ResponseEmitter/WorkerManResponseEmitter.php index 8223bf7..6812f7e 100644 --- a/src/ResponseEmitter/WorkerManResponseEmitter.php +++ b/src/ResponseEmitter/WorkerManResponseEmitter.php @@ -5,7 +5,7 @@ /** * This file is part of nextphp. * - * @link https://github.com/marxphp + * @link https://github.com/next-laboratory * @license https://github.com/next-laboratory/next/blob/master/LICENSE */ diff --git a/src/RouteDispatcher.php b/src/RouteDispatcher.php index 22da833..9515ca0 100644 --- a/src/RouteDispatcher.php +++ b/src/RouteDispatcher.php @@ -5,7 +5,7 @@ /** * This file is part of nextphp. * - * @link https://github.com/marxphp + * @link https://github.com/next-laboratory * @license https://github.com/next-laboratory/next/blob/master/LICENSE */