diff --git a/README.md b/README.md index 33812b79..d1de8e06 100755 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@

-Max +Max

轻量 • 简单 • 快速

@@ -15,15 +15,15 @@ ## 主要组件 -- 符合 Psr7 的 [next/http-message](https://github.com/marxphp/http-message) HTTP消息 -- 符合 Psr7 的 [next/routing](https://github.com/marxphp/routing) 路由组件 -- 符合 Psr11 的 [next/di](https://github.com/marxphp/di) 依赖注入容器 -- 符合 Psr14 的 [next/event](https://github.com/marxphp/event) 事件 -- 符合 Psr15 的 [next/http-server](https://github.com/marxphp/http-server) HTTP服务 -- 符合 Psr16 的 [next/cache](https://github.com/marxphp/cache),支持 File,Memcached,Redis,APC [可扩展] -- AOP [next/aop](https://github.com/marxphp/aop) -- database [next/database](https://github.com/marxphp/database) -- session [next/session](https://github.com/marxphp/session) +- 符合 Psr7 的 [next/http-message](https://github.com/next-laboratory/http-message) HTTP消息 +- 符合 Psr7 的 [next/routing](https://github.com/next-laboratory/routing) 路由组件 +- 符合 Psr11 的 [next/di](https://github.com/next-laboratory/di) 依赖注入容器 +- 符合 Psr14 的 [next/event](https://github.com/next-laboratory/event) 事件 +- 符合 Psr15 的 [next/http-server](https://github.com/next-laboratory/http-server) HTTP服务 +- 符合 Psr16 的 [next/cache](https://github.com/next-laboratory/cache),支持 File,Memcached,Redis,APC [可扩展] +- AOP [next/aop](https://github.com/next-laboratory/aop) +- database [next/database](https://github.com/next-laboratory/database) +- session [next/session](https://github.com/next-laboratory/session) ## 贡献一览 @@ -33,4 +33,4 @@ ## 致谢 -感谢PHP最好用IDE: PHPStorm +感谢PHP最好用IDE: PHPStorm diff --git a/bin/release.sh b/bin/release.sh index 53f18741..fde469d8 100755 --- a/bin/release.sh +++ b/bin/release.sh @@ -32,7 +32,7 @@ do echo "" echo "Cloning $REMOTE"; TMP_DIR="/tmp/nextphp-split" - REMOTE_URL="git@github.com:marxphp/$REMOTE.git" + REMOTE_URL="git@github.com:next-laboratory/$REMOTE.git" rm -rf $TMP_DIR; mkdir $TMP_DIR; diff --git a/bin/split.sh b/bin/split.sh index 02a0a90a..efa5fe90 100644 --- a/bin/split.sh +++ b/bin/split.sh @@ -25,7 +25,7 @@ if [[ $# -eq 0 ]]; then fi for REPO in $REPOS ; do - remote $REPO git@github.com:marxphp/$REPO.git + remote $REPO git@github.com:next-laboratory/$REPO.git split "src/$REPO" $REPO done diff --git a/src/aop/composer.json b/src/aop/composer.json index ed848318..5162e83a 100644 --- a/src/aop/composer.json +++ b/src/aop/composer.json @@ -1,7 +1,7 @@ { "name": "next/aop", "description": "An AOP package that is resident in in-memory PHP frameworks, such as nextphp, WebMan.", - "homepage": "https://github.com/marxphp/aop", + "homepage": "https://github.com/next-laboratory/aop", "license": "Apache-2.0", "autoload": { "psr-4": { diff --git a/src/aop/publish/aop.php b/src/aop/publish/aop.php index 8b196c12..7eb11135 100644 --- a/src/aop/publish/aop.php +++ b/src/aop/publish/aop.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/aop/src/Aop.php b/src/aop/src/Aop.php index 45697a5a..34350d47 100644 --- a/src/aop/src/Aop.php +++ b/src/aop/src/Aop.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/aop/src/AstManager.php b/src/aop/src/AstManager.php index b1e69892..46774c61 100644 --- a/src/aop/src/AstManager.php +++ b/src/aop/src/AstManager.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/aop/src/Attribute/AspectConfig.php b/src/aop/src/Attribute/AspectConfig.php index ca76a8f2..d69e03eb 100755 --- a/src/aop/src/Attribute/AspectConfig.php +++ b/src/aop/src/Attribute/AspectConfig.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/aop/src/Collector/AbstractCollector.php b/src/aop/src/Collector/AbstractCollector.php index 177a7563..7fc1739f 100755 --- a/src/aop/src/Collector/AbstractCollector.php +++ b/src/aop/src/Collector/AbstractCollector.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/aop/src/Collector/AspectCollector.php b/src/aop/src/Collector/AspectCollector.php index 42eb1dcb..698c8c8f 100644 --- a/src/aop/src/Collector/AspectCollector.php +++ b/src/aop/src/Collector/AspectCollector.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/aop/src/Collector/PropertyAttributeCollector.php b/src/aop/src/Collector/PropertyAttributeCollector.php index 351c8808..8722b908 100644 --- a/src/aop/src/Collector/PropertyAttributeCollector.php +++ b/src/aop/src/Collector/PropertyAttributeCollector.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/aop/src/Contract/AspectInterface.php b/src/aop/src/Contract/AspectInterface.php index 9e592120..189bf49e 100755 --- a/src/aop/src/Contract/AspectInterface.php +++ b/src/aop/src/Contract/AspectInterface.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/aop/src/Contract/CollectorInterface.php b/src/aop/src/Contract/CollectorInterface.php index 74b58885..d7686922 100755 --- a/src/aop/src/Contract/CollectorInterface.php +++ b/src/aop/src/Contract/CollectorInterface.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/aop/src/Contract/PropertyAttribute.php b/src/aop/src/Contract/PropertyAttribute.php index 182af94a..66f9bb42 100755 --- a/src/aop/src/Contract/PropertyAttribute.php +++ b/src/aop/src/Contract/PropertyAttribute.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/aop/src/Exception/PropertyHandleException.php b/src/aop/src/Exception/PropertyHandleException.php index 7a058014..6466b948 100755 --- a/src/aop/src/Exception/PropertyHandleException.php +++ b/src/aop/src/Exception/PropertyHandleException.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/aop/src/JoinPoint.php b/src/aop/src/JoinPoint.php index 34fe3c94..24eb928d 100755 --- a/src/aop/src/JoinPoint.php +++ b/src/aop/src/JoinPoint.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/aop/src/Metadata.php b/src/aop/src/Metadata.php index 8918cc99..cef7a16d 100755 --- a/src/aop/src/Metadata.php +++ b/src/aop/src/Metadata.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/aop/src/PropertyHandler.php b/src/aop/src/PropertyHandler.php index 54d88f0a..428d6a43 100755 --- a/src/aop/src/PropertyHandler.php +++ b/src/aop/src/PropertyHandler.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/aop/src/PropertyHandlerVisitor.php b/src/aop/src/PropertyHandlerVisitor.php index c3995b3e..fce3a080 100644 --- a/src/aop/src/PropertyHandlerVisitor.php +++ b/src/aop/src/PropertyHandlerVisitor.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/aop/src/ProxyHandler.php b/src/aop/src/ProxyHandler.php index dbbfe835..54d91987 100644 --- a/src/aop/src/ProxyHandler.php +++ b/src/aop/src/ProxyHandler.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/aop/src/ProxyHandlerVisitor.php b/src/aop/src/ProxyHandlerVisitor.php index 330157cc..394cd321 100755 --- a/src/aop/src/ProxyHandlerVisitor.php +++ b/src/aop/src/ProxyHandlerVisitor.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/cache/composer.json b/src/cache/composer.json index fc863a17..76b2ae9d 100644 --- a/src/cache/composer.json +++ b/src/cache/composer.json @@ -2,7 +2,7 @@ "name": "next/cache", "type": "library", "license": "Apache-2.0", - "homepage": "https://github.com/marxphp/cache", + "homepage": "https://github.com/next-laboratory/cache", "description": "A cache component based on PSR16 specification which supports File,Redis,Memcached and APC.", "keywords": [ "cache", diff --git a/src/cache/src/Cache.php b/src/cache/src/Cache.php index 37150d7f..1328d45d 100644 --- a/src/cache/src/Cache.php +++ b/src/cache/src/Cache.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/cache/src/CacheException.php b/src/cache/src/CacheException.php index d41ce557..ece4ba69 100644 --- a/src/cache/src/CacheException.php +++ b/src/cache/src/CacheException.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/cache/src/Contract/CacheDriverInterface.php b/src/cache/src/Contract/CacheDriverInterface.php index 88690ab3..81d02a59 100644 --- a/src/cache/src/Contract/CacheDriverInterface.php +++ b/src/cache/src/Contract/CacheDriverInterface.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/cache/src/Driver/AbstractDriver.php b/src/cache/src/Driver/AbstractDriver.php index be50d178..e63fb760 100644 --- a/src/cache/src/Driver/AbstractDriver.php +++ b/src/cache/src/Driver/AbstractDriver.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/cache/src/Driver/ApcuDriver.php b/src/cache/src/Driver/ApcuDriver.php index 9b1bf73f..15ab7f9e 100644 --- a/src/cache/src/Driver/ApcuDriver.php +++ b/src/cache/src/Driver/ApcuDriver.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/cache/src/Driver/FileDriver.php b/src/cache/src/Driver/FileDriver.php index be532b4d..f6b57d78 100644 --- a/src/cache/src/Driver/FileDriver.php +++ b/src/cache/src/Driver/FileDriver.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/cache/src/Driver/MemcachedDriver.php b/src/cache/src/Driver/MemcachedDriver.php index 07e82e06..5216ee4a 100644 --- a/src/cache/src/Driver/MemcachedDriver.php +++ b/src/cache/src/Driver/MemcachedDriver.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/cache/src/Driver/RedisDriver.php b/src/cache/src/Driver/RedisDriver.php index 282edc2f..ff5ac527 100644 --- a/src/cache/src/Driver/RedisDriver.php +++ b/src/cache/src/Driver/RedisDriver.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/cache/src/InvalidArgumentException.php b/src/cache/src/InvalidArgumentException.php index 7ae58972..de818876 100644 --- a/src/cache/src/InvalidArgumentException.php +++ b/src/cache/src/InvalidArgumentException.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/cache/tests/CacheTest.php b/src/cache/tests/CacheTest.php index 648ccd89..f8e4de1a 100644 --- a/src/cache/tests/CacheTest.php +++ b/src/cache/tests/CacheTest.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/config/src/Contract/ConfigInterface.php b/src/config/src/Contract/ConfigInterface.php index 3e427b45..37c54711 100644 --- a/src/config/src/Contract/ConfigInterface.php +++ b/src/config/src/Contract/ConfigInterface.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/config/src/Repository.php b/src/config/src/Repository.php index 735d8616..2f12c4da 100644 --- a/src/config/src/Repository.php +++ b/src/config/src/Repository.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/config/tests/RepositoryTest.php b/src/config/tests/RepositoryTest.php index 08372064..80575af1 100755 --- a/src/config/tests/RepositoryTest.php +++ b/src/config/tests/RepositoryTest.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/database/composer.json b/src/database/composer.json index 8d49e454..e022f974 100644 --- a/src/database/composer.json +++ b/src/database/composer.json @@ -2,7 +2,7 @@ "name": "next/database", "type": "library", "license": "Apache-2.0", - "homepage": "https://github.com/marxphp/database", + "homepage": "https://github.com/next-laboratory/database", "authors": [ { "name": "chengyao", diff --git a/src/database/src/Contract/ConfigInterface.php b/src/database/src/Contract/ConfigInterface.php index 1714f029..dbd30de3 100644 --- a/src/database/src/Contract/ConfigInterface.php +++ b/src/database/src/Contract/ConfigInterface.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/database/src/Database.php b/src/database/src/Database.php index cc0b8fc1..15ddc3f8 100644 --- a/src/database/src/Database.php +++ b/src/database/src/Database.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/database/src/Event/QueryExecuted.php b/src/database/src/Event/QueryExecuted.php index ae74c322..ad118b75 100644 --- a/src/database/src/Event/QueryExecuted.php +++ b/src/database/src/Event/QueryExecuted.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/database/src/PDOConfig.php b/src/database/src/PDOConfig.php index 96e08779..502903fb 100644 --- a/src/database/src/PDOConfig.php +++ b/src/database/src/PDOConfig.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/database/src/Query.php b/src/database/src/Query.php index 45502faf..aaf47912 100644 --- a/src/database/src/Query.php +++ b/src/database/src/Query.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/di/composer.json b/src/di/composer.json index 1bf29a0a..06e73d16 100644 --- a/src/di/composer.json +++ b/src/di/composer.json @@ -1,7 +1,7 @@ { "name": "next/di", "description": "A lightweight dependency injection tool, container based on the PSR-11 specification.", - "homepage": "https://github.com/marxphp/di", + "homepage": "https://github.com/next-laboratory/di", "license": "Apache-2.0", "keywords": [ "container", diff --git a/src/di/src/Container.php b/src/di/src/Container.php index 8e3fd494..5ee0ecc0 100644 --- a/src/di/src/Container.php +++ b/src/di/src/Container.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/di/src/Context.php b/src/di/src/Context.php index 13ca9138..181897d6 100755 --- a/src/di/src/Context.php +++ b/src/di/src/Context.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/di/src/Exception/ContainerException.php b/src/di/src/Exception/ContainerException.php index 429e232a..2f691970 100755 --- a/src/di/src/Exception/ContainerException.php +++ b/src/di/src/Exception/ContainerException.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/di/src/Exception/NotFoundException.php b/src/di/src/Exception/NotFoundException.php index 52d0c7e8..4708cf87 100755 --- a/src/di/src/Exception/NotFoundException.php +++ b/src/di/src/Exception/NotFoundException.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/di/src/Reflection.php b/src/di/src/Reflection.php index 9ef79fbe..be1ac0a8 100644 --- a/src/di/src/Reflection.php +++ b/src/di/src/Reflection.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/di/src/helpers.php b/src/di/src/helpers.php index 8a57cd53..4456567f 100755 --- a/src/di/src/helpers.php +++ b/src/di/src/helpers.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/di/tests/Bar.php b/src/di/tests/Bar.php index 1c82057d..6c7ec686 100644 --- a/src/di/tests/Bar.php +++ b/src/di/tests/Bar.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/di/tests/ContainerTest.php b/src/di/tests/ContainerTest.php index bb252ec0..40b08ee9 100644 --- a/src/di/tests/ContainerTest.php +++ b/src/di/tests/ContainerTest.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/di/tests/ContextTest.php b/src/di/tests/ContextTest.php index ab7b46a1..a2a03c83 100644 --- a/src/di/tests/ContextTest.php +++ b/src/di/tests/ContextTest.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/di/tests/Foo.php b/src/di/tests/Foo.php index 5fb59e68..80aad776 100644 --- a/src/di/tests/Foo.php +++ b/src/di/tests/Foo.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/di/tests/FooInterface.php b/src/di/tests/FooInterface.php index eae23d0d..a72baa74 100644 --- a/src/di/tests/FooInterface.php +++ b/src/di/tests/FooInterface.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/composer.json b/src/event/composer.json index 234a3ac8..34a6a343 100644 --- a/src/event/composer.json +++ b/src/event/composer.json @@ -2,7 +2,7 @@ "name": "next/event", "license": "Apache-2.0", "description": "Event based on the PSR-14 specification", - "homepage": "https://github.com/marxphp/event.git", + "homepage": "https://github.com/next-laboratory/event.git", "keywords": [ "event", "psr-14" diff --git a/src/event/src/Contract/EventListenerInterface.php b/src/event/src/Contract/EventListenerInterface.php index 291192a5..214ed7d8 100644 --- a/src/event/src/Contract/EventListenerInterface.php +++ b/src/event/src/Contract/EventListenerInterface.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/event/src/EventDispatcher.php b/src/event/src/EventDispatcher.php index 1727bf9c..629a56a4 100644 --- a/src/event/src/EventDispatcher.php +++ b/src/event/src/EventDispatcher.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/event/src/EventListener.php b/src/event/src/EventListener.php index 7aa4114a..3611ed2b 100644 --- a/src/event/src/EventListener.php +++ b/src/event/src/EventListener.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/event/src/ListenerProvider.php b/src/event/src/ListenerProvider.php index efdb7eb0..887fb06e 100644 --- a/src/event/src/ListenerProvider.php +++ b/src/event/src/ListenerProvider.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/event/tests/EventDispatcherTest.php b/src/event/tests/EventDispatcherTest.php index 0d445ba7..b79801e8 100644 --- a/src/event/tests/EventDispatcherTest.php +++ b/src/event/tests/EventDispatcherTest.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/event/tests/Events/BarEvent.php b/src/event/tests/Events/BarEvent.php index c03841e8..b9bc6c48 100644 --- a/src/event/tests/Events/BarEvent.php +++ b/src/event/tests/Events/BarEvent.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/event/tests/Events/FooEvent.php b/src/event/tests/Events/FooEvent.php index 90adb39c..90ec8a64 100644 --- a/src/event/tests/Events/FooEvent.php +++ b/src/event/tests/Events/FooEvent.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/event/tests/ListenerProviderTest.php b/src/event/tests/ListenerProviderTest.php index dab524df..5f5091cf 100644 --- a/src/event/tests/ListenerProviderTest.php +++ b/src/event/tests/ListenerProviderTest.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/event/tests/Listeners/BarListener.php b/src/event/tests/Listeners/BarListener.php index 79643ed9..04f95474 100644 --- a/src/event/tests/Listeners/BarListener.php +++ b/src/event/tests/Listeners/BarListener.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/event/tests/Listeners/FooListener.php b/src/event/tests/Listeners/FooListener.php index 4998c9af..d183a9b9 100644 --- a/src/event/tests/Listeners/FooListener.php +++ b/src/event/tests/Listeners/FooListener.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/framework/src/Cache/Aspect/Cacheable.php b/src/framework/src/Cache/Aspect/Cacheable.php index 460332ca..7851126f 100644 --- a/src/framework/src/Cache/Aspect/Cacheable.php +++ b/src/framework/src/Cache/Aspect/Cacheable.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/framework/src/Config/Attribute/Config.php b/src/framework/src/Config/Attribute/Config.php index 59ae71fa..2c1fabe8 100644 --- a/src/framework/src/Config/Attribute/Config.php +++ b/src/framework/src/Config/Attribute/Config.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/framework/src/Console/Attribute/AsCommand.php b/src/framework/src/Console/Attribute/AsCommand.php index 30677f11..e182e01b 100644 --- a/src/framework/src/Console/Attribute/AsCommand.php +++ b/src/framework/src/Console/Attribute/AsCommand.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/framework/src/Console/Command/ControllerMakeCommand.php b/src/framework/src/Console/Command/ControllerMakeCommand.php index 30c7cda8..8cb87864 100644 --- a/src/framework/src/Console/Command/ControllerMakeCommand.php +++ b/src/framework/src/Console/Command/ControllerMakeCommand.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/framework/src/Console/Command/MiddlewareMakeCommand.php b/src/framework/src/Console/Command/MiddlewareMakeCommand.php index 81cb5a56..871e3f84 100644 --- a/src/framework/src/Console/Command/MiddlewareMakeCommand.php +++ b/src/framework/src/Console/Command/MiddlewareMakeCommand.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/framework/src/Console/Command/RouteListCommand.php b/src/framework/src/Console/Command/RouteListCommand.php index 8fffc757..efb4dbbd 100644 --- a/src/framework/src/Console/Command/RouteListCommand.php +++ b/src/framework/src/Console/Command/RouteListCommand.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/framework/src/Console/Command/stubs/controller.stub b/src/framework/src/Console/Command/stubs/controller.stub index 21a1cb2b..85acd3ac 100644 --- a/src/framework/src/Console/Command/stubs/controller.stub +++ b/src/framework/src/Console/Command/stubs/controller.stub @@ -5,7 +5,7 @@ declare(strict_types=1); /** * 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/framework/src/Console/Command/stubs/controller_rest.stub b/src/framework/src/Console/Command/stubs/controller_rest.stub index 42e7ac93..c8fbb4f5 100644 --- a/src/framework/src/Console/Command/stubs/controller_rest.stub +++ b/src/framework/src/Console/Command/stubs/controller_rest.stub @@ -5,7 +5,7 @@ declare(strict_types=1); /** * 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/framework/src/Console/Command/stubs/middleware.stub b/src/framework/src/Console/Command/stubs/middleware.stub index 53830e8c..71e73660 100644 --- a/src/framework/src/Console/Command/stubs/middleware.stub +++ b/src/framework/src/Console/Command/stubs/middleware.stub @@ -5,7 +5,7 @@ declare(strict_types=1); /** * 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/framework/src/Console/CommandCollector.php b/src/framework/src/Console/CommandCollector.php index bfd03373..43a2a049 100644 --- a/src/framework/src/Console/CommandCollector.php +++ b/src/framework/src/Console/CommandCollector.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/framework/src/Di/Attribute/Inject.php b/src/framework/src/Di/Attribute/Inject.php index 1bcd5ffc..207cf6dd 100644 --- a/src/framework/src/Di/Attribute/Inject.php +++ b/src/framework/src/Di/Attribute/Inject.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/framework/src/Event/Attribute/Listen.php b/src/framework/src/Event/Attribute/Listen.php index 07dbbb6c..3dc8de92 100644 --- a/src/framework/src/Event/Attribute/Listen.php +++ b/src/framework/src/Event/Attribute/Listen.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/framework/src/Event/ListenerCollector.php b/src/framework/src/Event/ListenerCollector.php index f7e8673d..921f2c2c 100644 --- a/src/framework/src/Event/ListenerCollector.php +++ b/src/framework/src/Event/ListenerCollector.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/framework/src/Routing/Attribute/Controller.php b/src/framework/src/Routing/Attribute/Controller.php index 86b1aa24..a77f868e 100644 --- a/src/framework/src/Routing/Attribute/Controller.php +++ b/src/framework/src/Routing/Attribute/Controller.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/framework/src/Routing/Attribute/DeleteMapping.php b/src/framework/src/Routing/Attribute/DeleteMapping.php index 33aa6844..5f10f716 100644 --- a/src/framework/src/Routing/Attribute/DeleteMapping.php +++ b/src/framework/src/Routing/Attribute/DeleteMapping.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/framework/src/Routing/Attribute/GetMapping.php b/src/framework/src/Routing/Attribute/GetMapping.php index 205ffffe..5be2aaa8 100644 --- a/src/framework/src/Routing/Attribute/GetMapping.php +++ b/src/framework/src/Routing/Attribute/GetMapping.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/framework/src/Routing/Attribute/PatchMapping.php b/src/framework/src/Routing/Attribute/PatchMapping.php index 77e7b47a..0fab0329 100644 --- a/src/framework/src/Routing/Attribute/PatchMapping.php +++ b/src/framework/src/Routing/Attribute/PatchMapping.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/framework/src/Routing/Attribute/PostMapping.php b/src/framework/src/Routing/Attribute/PostMapping.php index a38e56e2..a3a978a6 100644 --- a/src/framework/src/Routing/Attribute/PostMapping.php +++ b/src/framework/src/Routing/Attribute/PostMapping.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/framework/src/Routing/Attribute/PutMapping.php b/src/framework/src/Routing/Attribute/PutMapping.php index 7a2bf3d0..e9d3ae81 100644 --- a/src/framework/src/Routing/Attribute/PutMapping.php +++ b/src/framework/src/Routing/Attribute/PutMapping.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/framework/src/Routing/Attribute/RequestMapping.php b/src/framework/src/Routing/Attribute/RequestMapping.php index fcc539e7..f8a35e32 100644 --- a/src/framework/src/Routing/Attribute/RequestMapping.php +++ b/src/framework/src/Routing/Attribute/RequestMapping.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/framework/src/Routing/RouteCollector.php b/src/framework/src/Routing/RouteCollector.php index aee9a3af..ba1db2ef 100644 --- a/src/framework/src/Routing/RouteCollector.php +++ b/src/framework/src/Routing/RouteCollector.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/http-message/composer.json b/src/http-message/composer.json index 184dc847..c9301666 100644 --- a/src/http-message/composer.json +++ b/src/http-message/composer.json @@ -1,7 +1,7 @@ { "name": "next/http-message", "license": "Apache-2.0", - "home-page": "https://github.com/marxphp/http-message", + "home-page": "https://github.com/next-laboratory/http-message", "autoload": { "psr-4": { "Next\\Http\\Message\\": "src/" diff --git a/src/http-message/src/Bag/CookieBag.php b/src/http-message/src/Bag/CookieBag.php index bac895d1..edc984ad 100644 --- a/src/http-message/src/Bag/CookieBag.php +++ b/src/http-message/src/Bag/CookieBag.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/http-message/src/Bag/FileBag.php b/src/http-message/src/Bag/FileBag.php index 45e65a96..6aa78212 100644 --- a/src/http-message/src/Bag/FileBag.php +++ b/src/http-message/src/Bag/FileBag.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/http-message/src/Bag/HeaderBag.php b/src/http-message/src/Bag/HeaderBag.php index 16117aaa..a8e89a8c 100644 --- a/src/http-message/src/Bag/HeaderBag.php +++ b/src/http-message/src/Bag/HeaderBag.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/http-message/src/Bag/ParameterBag.php b/src/http-message/src/Bag/ParameterBag.php index 5fb956b7..8e4884a5 100644 --- a/src/http-message/src/Bag/ParameterBag.php +++ b/src/http-message/src/Bag/ParameterBag.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/http-message/src/Bag/ServerBag.php b/src/http-message/src/Bag/ServerBag.php index 35dedcd6..945e6614 100644 --- a/src/http-message/src/Bag/ServerBag.php +++ b/src/http-message/src/Bag/ServerBag.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/http-message/src/Contract/StatusCodeInterface.php b/src/http-message/src/Contract/StatusCodeInterface.php index 61fd730b..bcd646af 100644 --- a/src/http-message/src/Contract/StatusCodeInterface.php +++ b/src/http-message/src/Contract/StatusCodeInterface.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/http-message/src/Cookie.php b/src/http-message/src/Cookie.php index 98a67ede..cc890640 100644 --- a/src/http-message/src/Cookie.php +++ b/src/http-message/src/Cookie.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/http-message/src/Exception/HttpException.php b/src/http-message/src/Exception/HttpException.php index 2348e630..74798dd6 100755 --- a/src/http-message/src/Exception/HttpException.php +++ b/src/http-message/src/Exception/HttpException.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/http-message/src/Message.php b/src/http-message/src/Message.php index 8140b1c0..f3bd0cf4 100644 --- a/src/http-message/src/Message.php +++ b/src/http-message/src/Message.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/http-message/src/Request.php b/src/http-message/src/Request.php index fca1165a..5595500c 100644 --- a/src/http-message/src/Request.php +++ b/src/http-message/src/Request.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/http-message/src/Response.php b/src/http-message/src/Response.php index 097f1abd..097594ac 100644 --- a/src/http-message/src/Response.php +++ b/src/http-message/src/Response.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/http-message/src/ServerRequest.php b/src/http-message/src/ServerRequest.php index 9f61b313..a44d9cd4 100644 --- a/src/http-message/src/ServerRequest.php +++ b/src/http-message/src/ServerRequest.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/http-message/src/Stream/FileStream.php b/src/http-message/src/Stream/FileStream.php index a7e3c939..d2ec90c7 100644 --- a/src/http-message/src/Stream/FileStream.php +++ b/src/http-message/src/Stream/FileStream.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/http-message/src/Stream/StandardStream.php b/src/http-message/src/Stream/StandardStream.php index a1715762..05dfc5d7 100644 --- a/src/http-message/src/Stream/StandardStream.php +++ b/src/http-message/src/Stream/StandardStream.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/http-message/src/UploadedFile.php b/src/http-message/src/UploadedFile.php index de242cc8..9d45516e 100644 --- a/src/http-message/src/UploadedFile.php +++ b/src/http-message/src/UploadedFile.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/http-message/src/Uri.php b/src/http-message/src/Uri.php index 4d39ba77..546e8ad1 100644 --- a/src/http-message/src/Uri.php +++ b/src/http-message/src/Uri.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/http-message/src/helpers.php b/src/http-message/src/helpers.php index db89e884..7be7e40c 100755 --- a/src/http-message/src/helpers.php +++ b/src/http-message/src/helpers.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/http-server/composer.json b/src/http-server/composer.json index 8da09ee9..8e1ebe2d 100644 --- a/src/http-server/composer.json +++ b/src/http-server/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/http-server/src/Contract/ResponseEmitterInterface.php b/src/http-server/src/Contract/ResponseEmitterInterface.php index cbb95edc..449774b9 100644 --- a/src/http-server/src/Contract/ResponseEmitterInterface.php +++ b/src/http-server/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/http-server/src/Contract/RouteDispatcherInterface.php b/src/http-server/src/Contract/RouteDispatcherInterface.php index a9eb14ec..f9ce1471 100644 --- a/src/http-server/src/Contract/RouteDispatcherInterface.php +++ b/src/http-server/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/http-server/src/Event/OnRequest.php b/src/http-server/src/Event/OnRequest.php index c4d97086..66a81b4a 100644 --- a/src/http-server/src/Event/OnRequest.php +++ b/src/http-server/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/http-server/src/Exception/CSRFException.php b/src/http-server/src/Exception/CSRFException.php index be91f6b1..46f358fa 100755 --- a/src/http-server/src/Exception/CSRFException.php +++ b/src/http-server/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/http-server/src/Kernel.php b/src/http-server/src/Kernel.php index 61818001..60db212f 100644 --- a/src/http-server/src/Kernel.php +++ b/src/http-server/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/http-server/src/Middleware/CORSMiddleware.php b/src/http-server/src/Middleware/CORSMiddleware.php index 5cf3c2d4..a6d8f3c9 100644 --- a/src/http-server/src/Middleware/CORSMiddleware.php +++ b/src/http-server/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/http-server/src/Middleware/ExceptionHandleMiddleware.php b/src/http-server/src/Middleware/ExceptionHandleMiddleware.php index 3b710da8..566fb35b 100644 --- a/src/http-server/src/Middleware/ExceptionHandleMiddleware.php +++ b/src/http-server/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/http-server/src/Middleware/RoutingMiddleware.php b/src/http-server/src/Middleware/RoutingMiddleware.php index 37d5956c..5210f6d9 100644 --- a/src/http-server/src/Middleware/RoutingMiddleware.php +++ b/src/http-server/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/http-server/src/Middleware/VerifyCSRFToken.php b/src/http-server/src/Middleware/VerifyCSRFToken.php index 19cbe155..ade57ecb 100644 --- a/src/http-server/src/Middleware/VerifyCSRFToken.php +++ b/src/http-server/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/http-server/src/RequestHandler.php b/src/http-server/src/RequestHandler.php index 426b7c1e..53306fbe 100644 --- a/src/http-server/src/RequestHandler.php +++ b/src/http-server/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/http-server/src/ResponseEmitter/FPMResponseEmitter.php b/src/http-server/src/ResponseEmitter/FPMResponseEmitter.php index 4422acac..012f251e 100644 --- a/src/http-server/src/ResponseEmitter/FPMResponseEmitter.php +++ b/src/http-server/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/http-server/src/ResponseEmitter/SwooleResponseEmitter.php b/src/http-server/src/ResponseEmitter/SwooleResponseEmitter.php index beef420c..189a0f66 100644 --- a/src/http-server/src/ResponseEmitter/SwooleResponseEmitter.php +++ b/src/http-server/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/http-server/src/ResponseEmitter/WorkerManResponseEmitter.php b/src/http-server/src/ResponseEmitter/WorkerManResponseEmitter.php index 8223bf76..6812f7e3 100644 --- a/src/http-server/src/ResponseEmitter/WorkerManResponseEmitter.php +++ b/src/http-server/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/http-server/src/RouteDispatcher.php b/src/http-server/src/RouteDispatcher.php index 22da833c..9515ca08 100644 --- a/src/http-server/src/RouteDispatcher.php +++ b/src/http-server/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 */ diff --git a/src/routing/composer.json b/src/routing/composer.json index eed8d303..8ba5c028 100644 --- a/src/routing/composer.json +++ b/src/routing/composer.json @@ -1,7 +1,7 @@ { "name": "next/routing", "description": "A lightweight and fast routing component.", - "homepage": "https://github.com/marxphp/routing", + "homepage": "https://github.com/next-laboratory/routing", "license": "Apache-2.0", "authors": [ { diff --git a/src/routing/src/Exception/MethodNotAllowedException.php b/src/routing/src/Exception/MethodNotAllowedException.php index 6997752e..e8b3d1dc 100755 --- a/src/routing/src/Exception/MethodNotAllowedException.php +++ b/src/routing/src/Exception/MethodNotAllowedException.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/routing/src/Exception/RouteNotFoundException.php b/src/routing/src/Exception/RouteNotFoundException.php index d4f14e8d..3f573308 100755 --- a/src/routing/src/Exception/RouteNotFoundException.php +++ b/src/routing/src/Exception/RouteNotFoundException.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/routing/src/Route.php b/src/routing/src/Route.php index e8fe2b40..f31c1aa5 100644 --- a/src/routing/src/Route.php +++ b/src/routing/src/Route.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/routing/src/RouteCollection.php b/src/routing/src/RouteCollection.php index 7f496f7f..e168e9f4 100644 --- a/src/routing/src/RouteCollection.php +++ b/src/routing/src/RouteCollection.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/routing/src/Router.php b/src/routing/src/Router.php index 51556c44..e6bed668 100644 --- a/src/routing/src/Router.php +++ b/src/routing/src/Router.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/session/composer.json b/src/session/composer.json index 85f57834..582f3628 100644 --- a/src/session/composer.json +++ b/src/session/composer.json @@ -1,7 +1,7 @@ { "name": "next/session", "license": "Apache-2.0", - "homepage": "https://github.com/marxphp/session", + "homepage": "https://github.com/next-laboratory/session", "authors": [ { "name": "chengyao", diff --git a/src/session/src/Handler/FileHandler.php b/src/session/src/Handler/FileHandler.php index ae105493..ad006382 100644 --- a/src/session/src/Handler/FileHandler.php +++ b/src/session/src/Handler/FileHandler.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/session/src/Handler/RedisHandler.php b/src/session/src/Handler/RedisHandler.php index be395309..21f60298 100644 --- a/src/session/src/Handler/RedisHandler.php +++ b/src/session/src/Handler/RedisHandler.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/session/src/Session.php b/src/session/src/Session.php index 7b5fd3df..fa253079 100644 --- a/src/session/src/Session.php +++ b/src/session/src/Session.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/utils/composer.json b/src/utils/composer.json index 3978f726..aad499f6 100644 --- a/src/utils/composer.json +++ b/src/utils/composer.json @@ -2,7 +2,7 @@ "name": "next/utils", "type": "library", "license": "Apache-2.0", - "homepage": "https://github.com/marxphp/utils", + "homepage": "https://github.com/next-laboratory/utils", "authors": [ { "name": "chengyao", diff --git a/src/utils/src/Arr.php b/src/utils/src/Arr.php index dc748656..b640692e 100644 --- a/src/utils/src/Arr.php +++ b/src/utils/src/Arr.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/utils/src/BC.php b/src/utils/src/BC.php index b279bb33..7da59cca 100644 --- a/src/utils/src/BC.php +++ b/src/utils/src/BC.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/utils/src/Collection.php b/src/utils/src/Collection.php index e87962df..df99c87d 100644 --- a/src/utils/src/Collection.php +++ b/src/utils/src/Collection.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/utils/src/Composer.php b/src/utils/src/Composer.php index 52f95cb0..e9ee9606 100644 --- a/src/utils/src/Composer.php +++ b/src/utils/src/Composer.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/utils/src/Contract/Arrayable.php b/src/utils/src/Contract/Arrayable.php index cf23bdb1..56a0fb62 100755 --- a/src/utils/src/Contract/Arrayable.php +++ b/src/utils/src/Contract/Arrayable.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/utils/src/Contract/CanBeEscapedWhenCastToString.php b/src/utils/src/Contract/CanBeEscapedWhenCastToString.php index 9fa0dac3..2d1456c0 100644 --- a/src/utils/src/Contract/CanBeEscapedWhenCastToString.php +++ b/src/utils/src/Contract/CanBeEscapedWhenCastToString.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/utils/src/Contract/DeferringDisplayableValue.php b/src/utils/src/Contract/DeferringDisplayableValue.php index 62ad146b..fd9d5e8a 100755 --- a/src/utils/src/Contract/DeferringDisplayableValue.php +++ b/src/utils/src/Contract/DeferringDisplayableValue.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/utils/src/Contract/Enumerable.php b/src/utils/src/Contract/Enumerable.php index 389d8f6b..5bd7fe91 100644 --- a/src/utils/src/Contract/Enumerable.php +++ b/src/utils/src/Contract/Enumerable.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/utils/src/Contract/Htmlable.php b/src/utils/src/Contract/Htmlable.php index 62f4f48a..aed3423b 100755 --- a/src/utils/src/Contract/Htmlable.php +++ b/src/utils/src/Contract/Htmlable.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/utils/src/Contract/Jsonable.php b/src/utils/src/Contract/Jsonable.php index ad8721dd..9bc718b9 100755 --- a/src/utils/src/Contract/Jsonable.php +++ b/src/utils/src/Contract/Jsonable.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/utils/src/Contract/MessageBag.php b/src/utils/src/Contract/MessageBag.php index 9723eba5..18c00139 100755 --- a/src/utils/src/Contract/MessageBag.php +++ b/src/utils/src/Contract/MessageBag.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/utils/src/Contract/MessageProvider.php b/src/utils/src/Contract/MessageProvider.php index 9c39daf6..4635f9e1 100755 --- a/src/utils/src/Contract/MessageProvider.php +++ b/src/utils/src/Contract/MessageProvider.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/utils/src/Contract/PackerInterface.php b/src/utils/src/Contract/PackerInterface.php index c0aabd67..6aad57ac 100755 --- a/src/utils/src/Contract/PackerInterface.php +++ b/src/utils/src/Contract/PackerInterface.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/utils/src/Contract/Xmlable.php b/src/utils/src/Contract/Xmlable.php index dfa92e2f..58c60754 100755 --- a/src/utils/src/Contract/Xmlable.php +++ b/src/utils/src/Contract/Xmlable.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/utils/src/Exception/FileNotFoundException.php b/src/utils/src/Exception/FileNotFoundException.php index cd71c1cc..6c1621d0 100755 --- a/src/utils/src/Exception/FileNotFoundException.php +++ b/src/utils/src/Exception/FileNotFoundException.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/utils/src/Exception/ItemNotFoundException.php b/src/utils/src/Exception/ItemNotFoundException.php index 6732f196..5f29189e 100755 --- a/src/utils/src/Exception/ItemNotFoundException.php +++ b/src/utils/src/Exception/ItemNotFoundException.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/utils/src/Exception/MultipleItemsFoundException.php b/src/utils/src/Exception/MultipleItemsFoundException.php index c41edf2e..02c4edef 100755 --- a/src/utils/src/Exception/MultipleItemsFoundException.php +++ b/src/utils/src/Exception/MultipleItemsFoundException.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/utils/src/Filesystem.php b/src/utils/src/Filesystem.php index d46346c8..a80c812c 100644 --- a/src/utils/src/Filesystem.php +++ b/src/utils/src/Filesystem.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/utils/src/LazyCollection.php b/src/utils/src/LazyCollection.php index 510baf96..97c9faa0 100644 --- a/src/utils/src/LazyCollection.php +++ b/src/utils/src/LazyCollection.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/utils/src/Macroable.php b/src/utils/src/Macroable.php index 838fd1e8..8d402a8b 100644 --- a/src/utils/src/Macroable.php +++ b/src/utils/src/Macroable.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/utils/src/Optional.php b/src/utils/src/Optional.php index 7bad87bc..f8235a72 100644 --- a/src/utils/src/Optional.php +++ b/src/utils/src/Optional.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/utils/src/Packer/JsonPacker.php b/src/utils/src/Packer/JsonPacker.php index 361ca8e2..101bc03f 100755 --- a/src/utils/src/Packer/JsonPacker.php +++ b/src/utils/src/Packer/JsonPacker.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/utils/src/Packer/PhpSerializePacker.php b/src/utils/src/Packer/PhpSerializePacker.php index 329f8ffa..c1abdbc6 100755 --- a/src/utils/src/Packer/PhpSerializePacker.php +++ b/src/utils/src/Packer/PhpSerializePacker.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/utils/src/Pipeline.php b/src/utils/src/Pipeline.php index 33c358ac..c4f6009c 100755 --- a/src/utils/src/Pipeline.php +++ b/src/utils/src/Pipeline.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/utils/src/Pluralizer.php b/src/utils/src/Pluralizer.php index 8de5d205..795cc885 100755 --- a/src/utils/src/Pluralizer.php +++ b/src/utils/src/Pluralizer.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/utils/src/Proxy/HigherOrderCollectionProxy.php b/src/utils/src/Proxy/HigherOrderCollectionProxy.php index 657e1b5b..2915e106 100644 --- a/src/utils/src/Proxy/HigherOrderCollectionProxy.php +++ b/src/utils/src/Proxy/HigherOrderCollectionProxy.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/utils/src/Proxy/HigherOrderTapProxy.php b/src/utils/src/Proxy/HigherOrderTapProxy.php index 1cabc946..27656170 100644 --- a/src/utils/src/Proxy/HigherOrderTapProxy.php +++ b/src/utils/src/Proxy/HigherOrderTapProxy.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/utils/src/Proxy/HigherOrderWhenProxy.php b/src/utils/src/Proxy/HigherOrderWhenProxy.php index 0a852530..48858b05 100644 --- a/src/utils/src/Proxy/HigherOrderWhenProxy.php +++ b/src/utils/src/Proxy/HigherOrderWhenProxy.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/utils/src/Str.php b/src/utils/src/Str.php index 5b8b51ab..05fa86f5 100644 --- a/src/utils/src/Str.php +++ b/src/utils/src/Str.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/utils/src/Stringable.php b/src/utils/src/Stringable.php index a1603ee9..237929f3 100644 --- a/src/utils/src/Stringable.php +++ b/src/utils/src/Stringable.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/utils/src/Traits/AutoFillProperties.php b/src/utils/src/Traits/AutoFillProperties.php index 15d188df..80faab94 100755 --- a/src/utils/src/Traits/AutoFillProperties.php +++ b/src/utils/src/Traits/AutoFillProperties.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/utils/src/Traits/Conditionable.php b/src/utils/src/Traits/Conditionable.php index d3683be0..84ef9893 100644 --- a/src/utils/src/Traits/Conditionable.php +++ b/src/utils/src/Traits/Conditionable.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/utils/src/Traits/EnumeratesValues.php b/src/utils/src/Traits/EnumeratesValues.php index 4a7909e9..f52dac47 100644 --- a/src/utils/src/Traits/EnumeratesValues.php +++ b/src/utils/src/Traits/EnumeratesValues.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/utils/src/Traits/Tappable.php b/src/utils/src/Traits/Tappable.php index 113eba99..eb164165 100644 --- a/src/utils/src/Traits/Tappable.php +++ b/src/utils/src/Traits/Tappable.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/utils/src/helpers.php b/src/utils/src/helpers.php index 161b169f..be62ff67 100644 --- a/src/utils/src/helpers.php +++ b/src/utils/src/helpers.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/utils/tests/BCTest.php b/src/utils/tests/BCTest.php index 8f562a83..eb974318 100644 --- a/src/utils/tests/BCTest.php +++ b/src/utils/tests/BCTest.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/var-dumper/composer.json b/src/var-dumper/composer.json index 035299cf..eefe5917 100644 --- a/src/var-dumper/composer.json +++ b/src/var-dumper/composer.json @@ -1,7 +1,7 @@ { "name": "next/var-dumper", "license": "Apache-2.0", - "homepage": "https://github.com/marxphp/var-dumper", + "homepage": "https://github.com/next-laboratory/var-dumper", "autoload": { "psr-4": { "Next\\VarDumper\\": "src/" diff --git a/src/var-dumper/src/Adapter/HyperfDumperHandler.php b/src/var-dumper/src/Adapter/HyperfDumperHandler.php index 6bad82f1..d533399a 100644 --- a/src/var-dumper/src/Adapter/HyperfDumperHandler.php +++ b/src/var-dumper/src/Adapter/HyperfDumperHandler.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/var-dumper/src/Dumper.php b/src/var-dumper/src/Dumper.php index f8ed8768..cdc07e1c 100644 --- a/src/var-dumper/src/Dumper.php +++ b/src/var-dumper/src/Dumper.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/var-dumper/src/DumperHandler.php b/src/var-dumper/src/DumperHandler.php index c4c47fe4..85d95cd3 100644 --- a/src/var-dumper/src/DumperHandler.php +++ b/src/var-dumper/src/DumperHandler.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/var-dumper/src/helpers.php b/src/var-dumper/src/helpers.php index ee61a50c..178ffe89 100644 --- a/src/var-dumper/src/helpers.php +++ b/src/var-dumper/src/helpers.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/tests/bootstrap.php b/tests/bootstrap.php index f0c8415d..5f0eb430 100644 --- a/tests/bootstrap.php +++ b/tests/bootstrap.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 */