Skip to content
This repository has been archived by the owner on Mar 28, 2021. It is now read-only.

Commit

Permalink
prepare 1.3.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
nyamsprod committed Nov 24, 2017
1 parent 03cf5bc commit e8ad43a
Show file tree
Hide file tree
Showing 50 changed files with 177 additions and 52 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,25 @@

- All Notable changes to `uri-manipulations` will be documented in this file

## 1.3.0 - 2017-11-24

### Added

- `League\Uri\Modifiers\RemoveQueryParams`
- `League\Uri\remove_params`

### Fixed

- Update League Uri Components version

### Deprecated

- None

### Removed

- Nonce

## 1.2.0 - 2017-11-22

### Added
Expand Down
4 changes: 3 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
},
"minimun-stability" : "dev",
"require": {
"league/uri-components": "^1.4",
"league/uri-components": "^1.4.1",
"league/uri-interfaces": "^1.0",
"php" : ">=7.0",
"psr/http-message": "^1.0"
Expand All @@ -57,6 +57,8 @@
"league/uri-schemes": "Allow manipulating URI objects"
},
"scripts": {
"post-install-cmd": "\\League\\Uri\\Installer\\ICANNSection::update",
"post-update-cmd": "\\League\\Uri\\Installer\\ICANNSection::update",
"test": "phpunit --coverage-text; php-cs-fixer fix -v --diff --dry-run --allow-risky=yes;",
"phpunit": "phpunit --coverage-text",
"phpcs": "php-cs-fixer fix -v --diff --dry-run --allow-risky=yes;"
Expand Down
2 changes: 1 addition & 1 deletion src/Modifiers/AddBasePath.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @author Ignace Nyamagana Butera <[email protected]>
* @copyright 2016 Ignace Nyamagana Butera
* @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License)
* @version 1.2.0
* @version 1.3.0
* @link https://github.com/thephpleague/uri-manipulations
*/
declare(strict_types=1);
Expand Down
2 changes: 1 addition & 1 deletion src/Modifiers/AddLeadingSlash.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @author Ignace Nyamagana Butera <[email protected]>
* @copyright 2016 Ignace Nyamagana Butera
* @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License)
* @version 1.2.0
* @version 1.3.0
* @link https://github.com/thephpleague/uri-manipulations
*/
declare(strict_types=1);
Expand Down
2 changes: 1 addition & 1 deletion src/Modifiers/AddRootLabel.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @author Ignace Nyamagana Butera <[email protected]>
* @copyright 2016 Ignace Nyamagana Butera
* @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License)
* @version 1.2.0
* @version 1.3.0
* @link https://github.com/thephpleague/uri-manipulations
*/
declare(strict_types=1);
Expand Down
2 changes: 1 addition & 1 deletion src/Modifiers/AddTrailingSlash.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @author Ignace Nyamagana Butera <[email protected]>
* @copyright 2016 Ignace Nyamagana Butera
* @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License)
* @version 1.2.0
* @version 1.3.0
* @link https://github.com/thephpleague/uri-manipulations
*/
declare(strict_types=1);
Expand Down
2 changes: 1 addition & 1 deletion src/Modifiers/AppendLabel.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @author Ignace Nyamagana Butera <[email protected]>
* @copyright 2016 Ignace Nyamagana Butera
* @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License)
* @version 1.2.0
* @version 1.3.0
* @link https://github.com/thephpleague/uri-manipulations
*/
declare(strict_types=1);
Expand Down
2 changes: 1 addition & 1 deletion src/Modifiers/AppendQuery.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @author Ignace Nyamagana Butera <[email protected]>
* @copyright 2016 Ignace Nyamagana Butera
* @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License)
* @version 1.2.0
* @version 1.3.0
* @link https://github.com/thephpleague/uri-manipulations
*/
declare(strict_types=1);
Expand Down
2 changes: 1 addition & 1 deletion src/Modifiers/AppendSegment.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @author Ignace Nyamagana Butera <[email protected]>
* @copyright 2016 Ignace Nyamagana Butera
* @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License)
* @version 1.2.0
* @version 1.3.0
* @link https://github.com/thephpleague/uri-manipulations
*/
declare(strict_types=1);
Expand Down
2 changes: 1 addition & 1 deletion src/Modifiers/Basename.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @author Ignace Nyamagana Butera <[email protected]>
* @copyright 2016 Ignace Nyamagana Butera
* @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License)
* @version 1.2.0
* @version 1.3.0
* @link https://github.com/thephpleague/uri-manipulations
*/
declare(strict_types=1);
Expand Down
2 changes: 1 addition & 1 deletion src/Modifiers/CallableAdapter.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @author Ignace Nyamagana Butera <[email protected]>
* @copyright 2016 Ignace Nyamagana Butera
* @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License)
* @version 1.2.0
* @version 1.3.0
* @link https://github.com/thephpleague/uri-manipulations
*/
declare(strict_types=1);
Expand Down
2 changes: 1 addition & 1 deletion src/Modifiers/DataUriParameters.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @author Ignace Nyamagana Butera <[email protected]>
* @copyright 2016 Ignace Nyamagana Butera
* @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License)
* @version 1.2.0
* @version 1.3.0
* @link https://github.com/thephpleague/uri-manipulations
*/
declare(strict_types=1);
Expand Down
2 changes: 1 addition & 1 deletion src/Modifiers/DataUriToAscii.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @author Ignace Nyamagana Butera <[email protected]>
* @copyright 2016 Ignace Nyamagana Butera
* @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License)
* @version 1.2.0
* @version 1.3.0
* @link https://github.com/thephpleague/uri-manipulations
*/
declare(strict_types=1);
Expand Down
2 changes: 1 addition & 1 deletion src/Modifiers/DataUriToBinary.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @author Ignace Nyamagana Butera <[email protected]>
* @copyright 2016 Ignace Nyamagana Butera
* @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License)
* @version 1.2.0
* @version 1.3.0
* @link https://github.com/thephpleague/uri-manipulations
*/
declare(strict_types=1);
Expand Down
2 changes: 1 addition & 1 deletion src/Modifiers/DecodeUnreservedCharacters.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @author Ignace Nyamagana Butera <[email protected]>
* @copyright 2016 Ignace Nyamagana Butera
* @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License)
* @version 1.2.0
* @version 1.3.0
* @link https://github.com/thephpleague/uri-manipulations
*/
declare(strict_types=1);
Expand Down
2 changes: 1 addition & 1 deletion src/Modifiers/Dirname.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @author Ignace Nyamagana Butera <[email protected]>
* @copyright 2016 Ignace Nyamagana Butera
* @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License)
* @version 1.2.0
* @version 1.3.0
* @link https://github.com/thephpleague/uri-manipulations
*/
declare(strict_types=1);
Expand Down
2 changes: 1 addition & 1 deletion src/Modifiers/Exception.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @author Ignace Nyamagana Butera <[email protected]>
* @copyright 2016 Ignace Nyamagana Butera
* @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License)
* @version 1.2.0
* @version 1.3.0
* @link https://github.com/thephpleague/uri-manipulations
*/
declare(strict_types=1);
Expand Down
2 changes: 1 addition & 1 deletion src/Modifiers/Extension.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @author Ignace Nyamagana Butera <[email protected]>
* @copyright 2016 Ignace Nyamagana Butera
* @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License)
* @version 1.2.0
* @version 1.3.0
* @link https://github.com/thephpleague/uri-manipulations
*/
declare(strict_types=1);
Expand Down
2 changes: 1 addition & 1 deletion src/Modifiers/Formatter.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @author Ignace Nyamagana Butera <[email protected]>
* @copyright 2016 Ignace Nyamagana Butera
* @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License)
* @version 1.2.0
* @version 1.3.0
* @link https://github.com/thephpleague/uri-manipulations
*/
declare(strict_types=1);
Expand Down
3 changes: 1 addition & 2 deletions src/Modifiers/HostMiddlewareTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,9 @@
* @author Ignace Nyamagana Butera <[email protected]>
* @copyright 2016 Ignace Nyamagana Butera
* @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License)
* @version 1.2.0
* @version 1.3.0
* @link https://github.com/thephpleague/uri-manipulations
*/
declare(strict_types=1);

namespace League\Uri\Modifiers;

Expand Down
2 changes: 1 addition & 1 deletion src/Modifiers/HostToAscii.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @author Ignace Nyamagana Butera <[email protected]>
* @copyright 2016 Ignace Nyamagana Butera
* @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License)
* @version 1.2.0
* @version 1.3.0
* @link https://github.com/thephpleague/uri-manipulations
*/
declare(strict_types=1);
Expand Down
2 changes: 1 addition & 1 deletion src/Modifiers/HostToUnicode.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @author Ignace Nyamagana Butera <[email protected]>
* @copyright 2016 Ignace Nyamagana Butera
* @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License)
* @version 1.2.0
* @version 1.3.0
* @link https://github.com/thephpleague/uri-manipulations
*/
declare(strict_types=1);
Expand Down
2 changes: 1 addition & 1 deletion src/Modifiers/KsortQuery.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @author Ignace Nyamagana Butera <[email protected]>
* @copyright 2016 Ignace Nyamagana Butera
* @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License)
* @version 1.2.0
* @version 1.3.0
* @link https://github.com/thephpleague/uri-manipulations
*/
declare(strict_types=1);
Expand Down
2 changes: 1 addition & 1 deletion src/Modifiers/MergeQuery.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @author Ignace Nyamagana Butera <[email protected]>
* @copyright 2016 Ignace Nyamagana Butera
* @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License)
* @version 1.2.0
* @version 1.3.0
* @link https://github.com/thephpleague/uri-manipulations
*/
declare(strict_types=1);
Expand Down
2 changes: 1 addition & 1 deletion src/Modifiers/Normalize.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @author Ignace Nyamagana Butera <[email protected]>
* @copyright 2016 Ignace Nyamagana Butera
* @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License)
* @version 1.2.0
* @version 1.3.0
* @link https://github.com/thephpleague/uri-manipulations
*/
declare(strict_types=1);
Expand Down
3 changes: 1 addition & 2 deletions src/Modifiers/PathMiddlewareTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,9 @@
* @author Ignace Nyamagana Butera <[email protected]>
* @copyright 2016 Ignace Nyamagana Butera
* @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License)
* @version 1.2.0
* @version 1.3.0
* @link https://github.com/thephpleague/uri-manipulations
*/
declare(strict_types=1);

namespace League\Uri\Modifiers;

Expand Down
2 changes: 1 addition & 1 deletion src/Modifiers/Pipeline.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @author Ignace Nyamagana Butera <[email protected]>
* @copyright 2016 Ignace Nyamagana Butera
* @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License)
* @version 1.2.0
* @version 1.3.0
* @link https://github.com/thephpleague/uri-manipulations
*/
declare(strict_types=1);
Expand Down
2 changes: 1 addition & 1 deletion src/Modifiers/PrependLabel.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @author Ignace Nyamagana Butera <[email protected]>
* @copyright 2016 Ignace Nyamagana Butera
* @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License)
* @version 1.2.0
* @version 1.3.0
* @link https://github.com/thephpleague/uri-manipulations
*/
declare(strict_types=1);
Expand Down
2 changes: 1 addition & 1 deletion src/Modifiers/PrependSegment.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @author Ignace Nyamagana Butera <[email protected]>
* @copyright 2016 Ignace Nyamagana Butera
* @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License)
* @version 1.2.0
* @version 1.3.0
* @link https://github.com/thephpleague/uri-manipulations
*/
declare(strict_types=1);
Expand Down
3 changes: 1 addition & 2 deletions src/Modifiers/QueryMiddlewareTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,9 @@
* @author Ignace Nyamagana Butera <[email protected]>
* @copyright 2016 Ignace Nyamagana Butera
* @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License)
* @version 1.2.0
* @version 1.3.0
* @link https://github.com/thephpleague/uri-manipulations
*/
declare(strict_types=1);

namespace League\Uri\Modifiers;

Expand Down
2 changes: 1 addition & 1 deletion src/Modifiers/RegisterableDomain.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @author Ignace Nyamagana Butera <[email protected]>
* @copyright 2016 Ignace Nyamagana Butera
* @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License)
* @version 1.2.0
* @version 1.3.0
* @link https://github.com/thephpleague/uri-manipulations
*/
declare(strict_types=1);
Expand Down
2 changes: 1 addition & 1 deletion src/Modifiers/RemoveBasePath.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @author Ignace Nyamagana Butera <[email protected]>
* @copyright 2016 Ignace Nyamagana Butera
* @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License)
* @version 1.2.0
* @version 1.3.0
* @link https://github.com/thephpleague/uri-manipulations
*/
declare(strict_types=1);
Expand Down
2 changes: 1 addition & 1 deletion src/Modifiers/RemoveDotSegments.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @author Ignace Nyamagana Butera <[email protected]>
* @copyright 2016 Ignace Nyamagana Butera
* @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License)
* @version 1.2.0
* @version 1.3.0
* @link https://github.com/thephpleague/uri-manipulations
*/
declare(strict_types=1);
Expand Down
2 changes: 1 addition & 1 deletion src/Modifiers/RemoveEmptySegments.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @author Ignace Nyamagana Butera <[email protected]>
* @copyright 2016 Ignace Nyamagana Butera
* @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License)
* @version 1.2.0
* @version 1.3.0
* @link https://github.com/thephpleague/uri-manipulations
*/
declare(strict_types=1);
Expand Down
2 changes: 1 addition & 1 deletion src/Modifiers/RemoveLabels.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @author Ignace Nyamagana Butera <[email protected]>
* @copyright 2016 Ignace Nyamagana Butera
* @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License)
* @version 1.2.0
* @version 1.3.0
* @link https://github.com/thephpleague/uri-manipulations
*/
declare(strict_types=1);
Expand Down
2 changes: 1 addition & 1 deletion src/Modifiers/RemoveLeadingSlash.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @author Ignace Nyamagana Butera <[email protected]>
* @copyright 2016 Ignace Nyamagana Butera
* @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License)
* @version 1.2.0
* @version 1.3.0
* @link https://github.com/thephpleague/uri-manipulations
*/
declare(strict_types=1);
Expand Down
2 changes: 1 addition & 1 deletion src/Modifiers/RemoveQueryKeys.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @author Ignace Nyamagana Butera <[email protected]>
* @copyright 2016 Ignace Nyamagana Butera
* @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License)
* @version 1.2.0
* @version 1.3.0
* @link https://github.com/thephpleague/uri-manipulations
*/
declare(strict_types=1);
Expand Down
Loading

0 comments on commit e8ad43a

Please sign in to comment.