From 03cf5bc525611c3cb37b31b3845a91bf01725b31 Mon Sep 17 00:00:00 2001 From: Ignace Nyamagana Butera Date: Wed, 22 Nov 2017 13:09:07 +0100 Subject: [PATCH] prepare 1.2.0 release --- CHANGELOG.md | 18 ++++++++++++++++++ composer.json | 3 +-- src/Modifiers/AddBasePath.php | 2 +- src/Modifiers/AddLeadingSlash.php | 2 +- src/Modifiers/AddRootLabel.php | 2 +- src/Modifiers/AddTrailingSlash.php | 2 +- src/Modifiers/AppendLabel.php | 2 +- src/Modifiers/AppendQuery.php | 2 +- src/Modifiers/AppendSegment.php | 2 +- src/Modifiers/Basename.php | 2 +- src/Modifiers/CallableAdapter.php | 2 +- src/Modifiers/DataUriParameters.php | 2 +- src/Modifiers/DataUriToAscii.php | 2 +- src/Modifiers/DataUriToBinary.php | 2 +- src/Modifiers/DecodeUnreservedCharacters.php | 2 +- src/Modifiers/Dirname.php | 2 +- src/Modifiers/Exception.php | 2 +- src/Modifiers/Extension.php | 2 +- src/Modifiers/Formatter.php | 2 +- src/Modifiers/HostMiddlewareTrait.php | 2 +- src/Modifiers/HostToAscii.php | 2 +- src/Modifiers/HostToUnicode.php | 2 +- src/Modifiers/KsortQuery.php | 2 +- src/Modifiers/MergeQuery.php | 2 +- src/Modifiers/Normalize.php | 2 +- src/Modifiers/PathMiddlewareTrait.php | 2 +- src/Modifiers/Pipeline.php | 2 +- src/Modifiers/PrependLabel.php | 2 +- src/Modifiers/PrependSegment.php | 2 +- src/Modifiers/QueryMiddlewareTrait.php | 2 +- src/Modifiers/RegisterableDomain.php | 2 +- src/Modifiers/RemoveBasePath.php | 2 +- src/Modifiers/RemoveDotSegments.php | 2 +- src/Modifiers/RemoveEmptySegments.php | 2 +- src/Modifiers/RemoveLabels.php | 2 +- src/Modifiers/RemoveLeadingSlash.php | 2 +- src/Modifiers/RemoveQueryKeys.php | 2 +- src/Modifiers/RemoveRootLabel.php | 2 +- src/Modifiers/RemoveSegments.php | 2 +- src/Modifiers/RemoveTrailingSlash.php | 2 +- src/Modifiers/RemoveZoneIdentifier.php | 2 +- src/Modifiers/ReplaceLabel.php | 2 +- src/Modifiers/ReplaceSegment.php | 2 +- src/Modifiers/Resolve.php | 2 +- src/Modifiers/Subdomain.php | 2 +- src/Modifiers/UriMiddlewareInterface.php | 2 +- src/Modifiers/UriMiddlewareTrait.php | 2 +- src/functions.php | 8 ++++---- 48 files changed, 68 insertions(+), 51 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fd6334f..1f19ddd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,24 @@ - All Notable changes to `uri-manipulations` will be documented in this file +## 1.2.0 - 2017-11-22 + +### Added + +- None + +### Fixed + +- Update League Uri Components version + +### Deprecated + +- None + +### Removed + +- Nonce + ## 1.1.0 - 2017-10-25 ### Added diff --git a/composer.json b/composer.json index 1f9f1cf..b2c994d 100644 --- a/composer.json +++ b/composer.json @@ -30,9 +30,8 @@ }, "minimun-stability" : "dev", "require": { - "jeremykendall/php-domain-parser": "4.0.3-alpha", + "league/uri-components": "^1.4", "league/uri-interfaces": "^1.0", - "league/uri-components": "^1.1", "php" : ">=7.0", "psr/http-message": "^1.0" }, diff --git a/src/Modifiers/AddBasePath.php b/src/Modifiers/AddBasePath.php index 047f2a1..aefcfb6 100644 --- a/src/Modifiers/AddBasePath.php +++ b/src/Modifiers/AddBasePath.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/AddLeadingSlash.php b/src/Modifiers/AddLeadingSlash.php index 61eea8f..ecfbb5d 100644 --- a/src/Modifiers/AddLeadingSlash.php +++ b/src/Modifiers/AddLeadingSlash.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/AddRootLabel.php b/src/Modifiers/AddRootLabel.php index f782585..497d0df 100644 --- a/src/Modifiers/AddRootLabel.php +++ b/src/Modifiers/AddRootLabel.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/AddTrailingSlash.php b/src/Modifiers/AddTrailingSlash.php index 32a87b0..c8694f0 100644 --- a/src/Modifiers/AddTrailingSlash.php +++ b/src/Modifiers/AddTrailingSlash.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/AppendLabel.php b/src/Modifiers/AppendLabel.php index e0aaff1..7100dfb 100644 --- a/src/Modifiers/AppendLabel.php +++ b/src/Modifiers/AppendLabel.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/AppendQuery.php b/src/Modifiers/AppendQuery.php index dbc2885..b5d7ac3 100644 --- a/src/Modifiers/AppendQuery.php +++ b/src/Modifiers/AppendQuery.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/AppendSegment.php b/src/Modifiers/AppendSegment.php index 4139096..16fdaea 100644 --- a/src/Modifiers/AppendSegment.php +++ b/src/Modifiers/AppendSegment.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/Basename.php b/src/Modifiers/Basename.php index a3ca0b9..a6af8e2 100644 --- a/src/Modifiers/Basename.php +++ b/src/Modifiers/Basename.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/CallableAdapter.php b/src/Modifiers/CallableAdapter.php index d7029a9..70f7341 100644 --- a/src/Modifiers/CallableAdapter.php +++ b/src/Modifiers/CallableAdapter.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/DataUriParameters.php b/src/Modifiers/DataUriParameters.php index 4a65d34..c7e54ad 100644 --- a/src/Modifiers/DataUriParameters.php +++ b/src/Modifiers/DataUriParameters.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/DataUriToAscii.php b/src/Modifiers/DataUriToAscii.php index 223a878..c9b4261 100644 --- a/src/Modifiers/DataUriToAscii.php +++ b/src/Modifiers/DataUriToAscii.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/DataUriToBinary.php b/src/Modifiers/DataUriToBinary.php index 1b65ced..1ef7926 100644 --- a/src/Modifiers/DataUriToBinary.php +++ b/src/Modifiers/DataUriToBinary.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/DecodeUnreservedCharacters.php b/src/Modifiers/DecodeUnreservedCharacters.php index f898bd9..28221f0 100644 --- a/src/Modifiers/DecodeUnreservedCharacters.php +++ b/src/Modifiers/DecodeUnreservedCharacters.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/Dirname.php b/src/Modifiers/Dirname.php index 91017bc..60d77a8 100644 --- a/src/Modifiers/Dirname.php +++ b/src/Modifiers/Dirname.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/Exception.php b/src/Modifiers/Exception.php index 2da4ef2..eebda0a 100644 --- a/src/Modifiers/Exception.php +++ b/src/Modifiers/Exception.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/Extension.php b/src/Modifiers/Extension.php index 8f9d389..566c2f4 100644 --- a/src/Modifiers/Extension.php +++ b/src/Modifiers/Extension.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/Formatter.php b/src/Modifiers/Formatter.php index afe4106..adfcd4f 100644 --- a/src/Modifiers/Formatter.php +++ b/src/Modifiers/Formatter.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/HostMiddlewareTrait.php b/src/Modifiers/HostMiddlewareTrait.php index ff8385d..0f609f4 100644 --- a/src/Modifiers/HostMiddlewareTrait.php +++ b/src/Modifiers/HostMiddlewareTrait.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/HostToAscii.php b/src/Modifiers/HostToAscii.php index 29a12c2..6baa047 100644 --- a/src/Modifiers/HostToAscii.php +++ b/src/Modifiers/HostToAscii.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/HostToUnicode.php b/src/Modifiers/HostToUnicode.php index 285940c..e0d6d0b 100644 --- a/src/Modifiers/HostToUnicode.php +++ b/src/Modifiers/HostToUnicode.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/KsortQuery.php b/src/Modifiers/KsortQuery.php index b8737c3..791a853 100644 --- a/src/Modifiers/KsortQuery.php +++ b/src/Modifiers/KsortQuery.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/MergeQuery.php b/src/Modifiers/MergeQuery.php index f264688..1b31fb8 100644 --- a/src/Modifiers/MergeQuery.php +++ b/src/Modifiers/MergeQuery.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/Normalize.php b/src/Modifiers/Normalize.php index efc0989..49024f6 100644 --- a/src/Modifiers/Normalize.php +++ b/src/Modifiers/Normalize.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/PathMiddlewareTrait.php b/src/Modifiers/PathMiddlewareTrait.php index 0fd3071..d42e062 100644 --- a/src/Modifiers/PathMiddlewareTrait.php +++ b/src/Modifiers/PathMiddlewareTrait.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/Pipeline.php b/src/Modifiers/Pipeline.php index 52f1c76..56920c7 100644 --- a/src/Modifiers/Pipeline.php +++ b/src/Modifiers/Pipeline.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/PrependLabel.php b/src/Modifiers/PrependLabel.php index 78bcd0e..349145b 100644 --- a/src/Modifiers/PrependLabel.php +++ b/src/Modifiers/PrependLabel.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/PrependSegment.php b/src/Modifiers/PrependSegment.php index 5eefed5..6888165 100644 --- a/src/Modifiers/PrependSegment.php +++ b/src/Modifiers/PrependSegment.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/QueryMiddlewareTrait.php b/src/Modifiers/QueryMiddlewareTrait.php index 7ff5fa3..2dd08e7 100644 --- a/src/Modifiers/QueryMiddlewareTrait.php +++ b/src/Modifiers/QueryMiddlewareTrait.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/RegisterableDomain.php b/src/Modifiers/RegisterableDomain.php index 966f88a..3a38c60 100644 --- a/src/Modifiers/RegisterableDomain.php +++ b/src/Modifiers/RegisterableDomain.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/RemoveBasePath.php b/src/Modifiers/RemoveBasePath.php index e985f94..b7be8b7 100644 --- a/src/Modifiers/RemoveBasePath.php +++ b/src/Modifiers/RemoveBasePath.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/RemoveDotSegments.php b/src/Modifiers/RemoveDotSegments.php index 32effc0..2145a9b 100644 --- a/src/Modifiers/RemoveDotSegments.php +++ b/src/Modifiers/RemoveDotSegments.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/RemoveEmptySegments.php b/src/Modifiers/RemoveEmptySegments.php index b712723..41e496d 100644 --- a/src/Modifiers/RemoveEmptySegments.php +++ b/src/Modifiers/RemoveEmptySegments.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/RemoveLabels.php b/src/Modifiers/RemoveLabels.php index 0a6c99e..a997183 100644 --- a/src/Modifiers/RemoveLabels.php +++ b/src/Modifiers/RemoveLabels.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/RemoveLeadingSlash.php b/src/Modifiers/RemoveLeadingSlash.php index fc95b04..0168892 100644 --- a/src/Modifiers/RemoveLeadingSlash.php +++ b/src/Modifiers/RemoveLeadingSlash.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/RemoveQueryKeys.php b/src/Modifiers/RemoveQueryKeys.php index fcea884..9334a0c 100644 --- a/src/Modifiers/RemoveQueryKeys.php +++ b/src/Modifiers/RemoveQueryKeys.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/RemoveRootLabel.php b/src/Modifiers/RemoveRootLabel.php index 52d2540..86e7cd9 100644 --- a/src/Modifiers/RemoveRootLabel.php +++ b/src/Modifiers/RemoveRootLabel.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/RemoveSegments.php b/src/Modifiers/RemoveSegments.php index 534f27e..f6ebe81 100644 --- a/src/Modifiers/RemoveSegments.php +++ b/src/Modifiers/RemoveSegments.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/RemoveTrailingSlash.php b/src/Modifiers/RemoveTrailingSlash.php index eba9f91..aa40eeb 100644 --- a/src/Modifiers/RemoveTrailingSlash.php +++ b/src/Modifiers/RemoveTrailingSlash.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/RemoveZoneIdentifier.php b/src/Modifiers/RemoveZoneIdentifier.php index b55dbd1..2f070bb 100644 --- a/src/Modifiers/RemoveZoneIdentifier.php +++ b/src/Modifiers/RemoveZoneIdentifier.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/ReplaceLabel.php b/src/Modifiers/ReplaceLabel.php index 490e5f6..a29fc7e 100644 --- a/src/Modifiers/ReplaceLabel.php +++ b/src/Modifiers/ReplaceLabel.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/ReplaceSegment.php b/src/Modifiers/ReplaceSegment.php index 2e0a805..f568565 100644 --- a/src/Modifiers/ReplaceSegment.php +++ b/src/Modifiers/ReplaceSegment.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/Resolve.php b/src/Modifiers/Resolve.php index 4087b02..440169d 100644 --- a/src/Modifiers/Resolve.php +++ b/src/Modifiers/Resolve.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/Subdomain.php b/src/Modifiers/Subdomain.php index b2ca9ee..e1a257b 100644 --- a/src/Modifiers/Subdomain.php +++ b/src/Modifiers/Subdomain.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/UriMiddlewareInterface.php b/src/Modifiers/UriMiddlewareInterface.php index e6a8d0f..98479c7 100644 --- a/src/Modifiers/UriMiddlewareInterface.php +++ b/src/Modifiers/UriMiddlewareInterface.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/UriMiddlewareTrait.php b/src/Modifiers/UriMiddlewareTrait.php index c88f763..a4603b0 100644 --- a/src/Modifiers/UriMiddlewareTrait.php +++ b/src/Modifiers/UriMiddlewareTrait.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/functions.php b/src/functions.php index 5506764..a577150 100644 --- a/src/functions.php +++ b/src/functions.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2017 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); @@ -306,7 +306,7 @@ function path_to_binary($uri) /** * Prepend a label or a host to the current URI host * - * @see Modifiers\AppendLabel::modifyHost() + * @see Modifiers\PrependLabel::modifyHost() * * @param Uri|UriInterface $uri * @param string $host @@ -486,7 +486,7 @@ function remove_trailing_slash($uri) /** * Remove path segments from the URI path according to their offsets * - * @see Modifiers\PrependSegment::modifyPath() + * @see Modifiers\RemoveSegments::modifyPath() * * @param Uri|UriInterface $uri * @param int[] $keys @@ -564,7 +564,7 @@ function replace_dirname($uri, string $path) /** * Replace the URI path basename extension * - * @see Modifiers\Dirname::modifyPath() + * @see Modifiers\Extension::modifyPath() * * @param Uri|UriInterface $uri * @param string $extension