diff --git a/.php_cs b/.php_cs index a6aa976..6418b08 100644 --- a/.php_cs +++ b/.php_cs @@ -3,8 +3,8 @@ $header = <<<'EOF' This file is part of League\Uri, a URI manipulation library -@copyright 2015 Ignace Nyamagana Butera. All rights reserved -@license MIT See LICENSE.md at the root of the project for more info +For the full copyright and license information, please view the LICENSE +file that was distributed with this source code. EOF; Symfony\CS\Fixer\Contrib\HeaderCommentFixer::setHeader($header); diff --git a/.scrutinizer.yml b/.scrutinizer.yml index 59f57d9..0116232 100644 --- a/.scrutinizer.yml +++ b/.scrutinizer.yml @@ -4,29 +4,11 @@ filter: checks: php: code_rating: true - remove_extra_empty_lines: true - remove_php_closing_tag: true - remove_trailing_whitespace: true - fix_use_statements: - remove_unused: true - preserve_multiple: false - preserve_blanklines: true - order_alphabetically: true - fix_php_opening_tag: true - fix_linefeed: true - fix_line_ending: true - fix_identation_4spaces: true - fix_doc_comments: true tools: external_code_coverage: timeout: 600 runs: 2 php_code_coverage: false - php_code_sniffer: - config: - standard: PSR2 - filter: - paths: ['src'] php_loc: enabled: true excluded_dirs: [tests, vendor] diff --git a/.travis.yml b/.travis.yml index 7a41de0..f9e608a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,11 +8,7 @@ matrix: env: COLLECT_COVERAGE=true VALIDATE_CODING_STYLE=true - php: 7.1 env: COLLECT_COVERAGE=true VALIDATE_CODING_STYLE=false - - php: hhvm - env: COLLECT_COVERAGE=false VALIDATE_CODING_STYLE=false fast_finish: true - allow_failures: - - php: hhvm cache: directories: diff --git a/CHANGELOG.md b/CHANGELOG.md index 2c3f10e..04d1b7c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ All Notable changes to `league-uri-parser` will be documented in this file -## Next +## 1.0.5 - 2017-04-19 ### Added @@ -10,7 +10,7 @@ All Notable changes to `league-uri-parser` will be documented in this file ### Fixed -- [issue #5](https://github.com/thephpleague/uri-parser/issues/5) Improve `Parser::isHost` validation of regsitered name +- [issue #5](https://github.com/thephpleague/uri-parser/issues/5) Improve `Parser::isHost` validation of registered name ### Deprecated diff --git a/src/Exception.php b/src/Exception.php index bfd7837..b06992c 100644 --- a/src/Exception.php +++ b/src/Exception.php @@ -5,10 +5,12 @@ * @package League\Uri * @subpackage League\Uri * @author Ignace Nyamagana Butera - * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-parser/blob/master/LICENSE (MIT License) - * @version 1.0.0 + * @version 1.0.5 * @link https://github.com/thephpleague/uri-parser/ + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. */ declare(strict_types=1); diff --git a/src/Parser.php b/src/Parser.php index 8fbccec..2d2ee8f 100644 --- a/src/Parser.php +++ b/src/Parser.php @@ -5,10 +5,12 @@ * @package League\Uri * @subpackage League\Uri * @author Ignace Nyamagana Butera - * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-parser/blob/master/LICENSE (MIT License) - * @version 1.0.0 + * @version 1.0.5 * @link https://github.com/thephpleague/uri-parser/ + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. */ declare(strict_types=1);