Skip to content
This repository was archived by the owner on Jan 31, 2020. It is now read-only.

Commit 3b64636

Browse files
committedApr 30, 2018
Merge branch 'hotfix/25-php-7.2.-support'
Close #25 Close #23 Fixes #22
2 parents 557aa2c + 586de39 commit 3b64636

35 files changed

+248
-299
lines changed
 

‎.gitattributes

+10-8
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1-
/test export-ignore
2-
/vendor export-ignore
3-
.coveralls.yml export-ignore
4-
.gitattributes export-ignore
5-
.gitignore export-ignore
6-
.travis.yml export-ignore
7-
.php_cs export-ignore
8-
phpunit.xml.dist export-ignore
1+
/.coveralls.yml export-ignore
2+
/.gitattributes export-ignore
3+
/.gitignore export-ignore
4+
/.travis.yml export-ignore
5+
/composer.lock export-ignore
6+
/docs/ export-ignore
7+
/mkdocs.yml export-ignore
8+
/phpcs.xml export-ignore
9+
/phpunit.xml.dist export-ignore
10+
/test/ export-ignore

‎.gitignore

+7-16
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,7 @@
1-
.buildpath
2-
.DS_Store
3-
.idea
4-
.project
5-
.settings/
6-
.*.sw*
7-
.*.un~
8-
nbproject
9-
doc/html/
10-
tmp/
11-
vendor/
12-
zf-mkdoc-theme/
13-
14-
clover.xml
15-
coveralls-upload.json
16-
phpunit.xml
1+
/clover.xml
2+
/coveralls-upload.json
3+
/docs/html/
4+
/phpunit.xml
5+
/vendor/
6+
/zf-mkdoc-theme.tgz
7+
/zf-mkdoc-theme/

‎.travis.yml

+19-10
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,13 @@ matrix:
2323
- php: 5.6
2424
env:
2525
- DEPS=latest
26-
- TEST_COVERAGE=true
2726
- php: 7
2827
env:
2928
- DEPS=lowest
3029
- php: 7
3130
env:
3231
- DEPS=locked
33-
- CHECK_CS=true
32+
- LEGACY_DEPS="phpunit/phpunit"
3433
- php: 7
3534
env:
3635
- DEPS=latest
@@ -40,15 +39,23 @@ matrix:
4039
- php: 7.1
4140
env:
4241
- DEPS=locked
42+
- CS_CHECK=true
43+
- TEST_COVERAGE=true
4344
- php: 7.1
4445
env:
4546
- DEPS=latest
46-
47-
notifications:
48-
email: false
47+
- php: 7.2
48+
env:
49+
- DEPS=lowest
50+
- php: 7.2
51+
env:
52+
- DEPS=locked
53+
- php: 7.2
54+
env:
55+
- DEPS=latest
4956

5057
before_install:
51-
- if [[ $TEST_COVERAGE != 'true' ]]; then phpenv config-rm xdebug.ini ; fi
58+
- if [[ $TEST_COVERAGE != 'true' ]]; then phpenv config-rm xdebug.ini || return 0 ; fi
5259

5360
install:
5461
- travis_retry composer install $COMPOSER_ARGS --ignore-platform-reqs
@@ -59,9 +66,11 @@ install:
5966
- stty cols 120 && composer show
6067

6168
script:
62-
- if [[ $TEST_COVERAGE == 'true' ]]; then composer test-coverage ; fi
63-
- if [[ $TEST_COVERAGE != 'true' ]]; then composer test ; fi
64-
- if [[ $CHECK_CS == 'true' ]]; then composer cs-check ; fi
69+
- if [[ $TEST_COVERAGE == 'true' ]]; then composer test-coverage ; else composer test ; fi
70+
- if [[ $CS_CHECK == 'true' ]]; then composer cs-check ; fi
6571

6672
after_script:
67-
- if [[ $TEST_COVERAGE == 'true' ]]; then travis_retry php ./vendor/bin/php-coveralls ; fi
73+
- if [[ $TEST_COVERAGE == 'true' ]]; then travis_retry php vendor/bin/php-coveralls -v ; fi
74+
75+
notifications:
76+
email: false

‎CHANGELOG.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,16 @@
22

33
All notable changes to this project will be documented in this file, in reverse chronological order by release.
44

5-
## 2.6.1 - TBD
5+
## 2.6.1 - 2018-04-30
66

77
### Added
88

99
- Nothing.
1010

1111
### Changed
1212

13-
- Nothing.
13+
- [#23](https://github.com/zendframework/zend-uri/pull/23) updates the zend-validator dependency to the 2.10 series, in order to ensure that
14+
this package can run under PHP 7.2.
1415

1516
### Deprecated
1617

‎LICENSE.md

+6-7
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
1-
Copyright (c) 2005-2015, Zend Technologies USA, Inc.
2-
1+
Copyright (c) 2005-2018, Zend Technologies USA, Inc.
32
All rights reserved.
43

54
Redistribution and use in source and binary forms, with or without modification,
65
are permitted provided that the following conditions are met:
76

8-
- Redistributions of source code must retain the above copyright notice,
9-
this list of conditions and the following disclaimer.
7+
- Redistributions of source code must retain the above copyright notice, this
8+
list of conditions and the following disclaimer.
109

11-
- Redistributions in binary form must reproduce the above copyright notice,
12-
this list of conditions and the following disclaimer in the documentation
13-
and/or other materials provided with the distribution.
10+
- Redistributions in binary form must reproduce the above copyright notice, this
11+
list of conditions and the following disclaimer in the documentation and/or
12+
other materials provided with the distribution.
1413

1514
- Neither the name of Zend Technologies USA, Inc. nor the names of its
1615
contributors may be used to endorse or promote products derived from this

‎README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# zend-uri
22

33
[![Build Status](https://secure.travis-ci.org/zendframework/zend-uri.svg?branch=master)](https://secure.travis-ci.org/zendframework/zend-uri)
4-
[![Coverage Status](https://coveralls.io/repos/zendframework/zend-uri/badge.svg?branch=master)](https://coveralls.io/r/zendframework/zend-uri?branch=master)
4+
[![Coverage Status](https://coveralls.io/repos/github/zendframework/zend-uri/badge.svg?branch=master)](https://coveralls.io/github/zendframework/zend-uri?branch=master)
55

66
zend-uri aids in manipulating and validating Uniform Resource Identifiers
77
([URIs](http://www.ietf.org/rfc/rfc3986.txt)). zend-uri exists primarily to
88
assist other components, such as zend-http, but is also useful as a standalone
99
utility.
1010

1111
- File issues at https://github.com/zendframework/zend-uri/issues
12-
- Documentation is at https://zendframework.github.io/zend-uri/
12+
- Documentation is at https://docs.zendframework.com/zend-uri/

‎composer.json

+26-15
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,47 @@
11
{
22
"name": "zendframework/zend-uri",
3-
"description": "a component that aids in manipulating and validating \u00bb Uniform Resource Identifiers (URIs)",
3+
"description": "A component that aids in manipulating and validating \u00bb Uniform Resource Identifiers (URIs)",
44
"license": "BSD-3-Clause",
55
"keywords": [
6-
"zf2",
6+
"zf",
7+
"zendframework",
78
"uri"
89
],
9-
"homepage": "https://github.com/zendframework/zend-uri",
10-
"autoload": {
11-
"psr-4": {
12-
"Zend\\Uri\\": "src/"
13-
}
10+
"support": {
11+
"docs": "https://docs.zendframework.com/zend-uri/",
12+
"issues": "https://github.com/zendframework/zend-uri/issues",
13+
"source": "https://github.com/zendframework/zend-uri",
14+
"rss": "https://github.com/zendframework/zend-uri/releases.atom",
15+
"chat": "https://zendframework-slack.herokuapp.com",
16+
"forum": "https://discourse.zendframework.com/c/questions/components"
1417
},
1518
"require": {
1619
"php": "^5.6 || ^7.0",
1720
"zendframework/zend-escaper": "^2.5",
18-
"zendframework/zend-validator": "^2.5"
21+
"zendframework/zend-validator": "^2.10"
1922
},
20-
"extra": {
21-
"branch-alias": {
22-
"dev-master": "2.6.x-dev",
23-
"dev-develop": "2.7.x-dev"
23+
"require-dev": {
24+
"phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.4",
25+
"zendframework/zend-coding-standard": "~1.0.0"
26+
},
27+
"autoload": {
28+
"psr-4": {
29+
"Zend\\Uri\\": "src/"
2430
}
2531
},
2632
"autoload-dev": {
2733
"psr-4": {
2834
"ZendTest\\Uri\\": "test/"
2935
}
3036
},
31-
"require-dev": {
32-
"phpunit/phpunit": "^6.2.1 || ^5.7.15",
33-
"zendframework/zend-coding-standard": "~1.0.0"
37+
"config": {
38+
"sort-packages": true
39+
},
40+
"extra": {
41+
"branch-alias": {
42+
"dev-master": "2.6.x-dev",
43+
"dev-develop": "2.7.x-dev"
44+
}
3445
},
3546
"scripts": {
3647
"check": [

‎composer.lock

+27-26
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎CONDUCT.md ‎docs/CODE_OF_CONDUCT.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Contributor Code of Conduct
22

3-
The Zend Framework project adheres to [The Code Manifesto](http://codemanifesto.com)
3+
This project adheres to [The Code Manifesto](http://codemanifesto.com)
44
as its guidelines for contributor interactions.
55

66
## The Code Manifesto

‎CONTRIBUTING.md ‎docs/CONTRIBUTING.md

+23-68
Original file line numberDiff line numberDiff line change
@@ -2,73 +2,43 @@
22

33
## RESOURCES
44

5-
If you wish to contribute to Zend Framework, please be sure to
5+
If you wish to contribute to this project, please be sure to
66
read/subscribe to the following resources:
77

8-
- [Coding Standards](https://github.com/zendframework/zf2/wiki/Coding-Standards)
9-
- [Contributor's Guide](http://framework.zend.com/participate/contributor-guide)
10-
- ZF Contributor's mailing list:
11-
Archives: http://zend-framework-community.634137.n4.nabble.com/ZF-Contributor-f680267.html
12-
Subscribe: zf-contributors-subscribe@lists.zend.com
13-
- ZF Contributor's IRC channel:
14-
#zftalk.dev on Freenode.net
8+
- [Coding Standards](https://github.com/zendframework/zend-coding-standard)
9+
- [Forums](https://discourse.zendframework.com/c/contributors)
10+
- [Chat](https://zendframework-slack.herokuapp.com)
11+
- [Code of Conduct](CODE_OF_CONDUCT.md)
1512

16-
If you are working on new features or refactoring [create a proposal](https://github.com/zendframework/zend-uri/issues/new).
17-
18-
## Reporting Potential Security Issues
19-
20-
If you have encountered a potential security vulnerability, please **DO NOT** report it on the public
21-
issue tracker: send it to us at [zf-security@zend.com](mailto:zf-security@zend.com) instead.
22-
We will work with you to verify the vulnerability and patch it as soon as possible.
23-
24-
When reporting issues, please provide the following information:
25-
26-
- Component(s) affected
27-
- A description indicating how to reproduce the issue
28-
- A summary of the security vulnerability and impact
29-
30-
We request that you contact us via the email address above and give the project
31-
contributors a chance to resolve the vulnerability and issue a new release prior
32-
to any public exposure; this helps protect users and provides them with a chance
33-
to upgrade and/or update in order to protect their applications.
34-
35-
For sensitive email communications, please use [our PGP key](http://framework.zend.com/zf-security-pgp-key.asc).
13+
If you are working on new features or refactoring
14+
[create a proposal](https://github.com/zendframework/zend-uri/issues/new).
3615

3716
## RUNNING TESTS
3817

39-
> ### Note: testing versions prior to 2.4
40-
>
41-
> This component originates with Zend Framework 2. During the lifetime of ZF2,
42-
> testing infrastructure migrated from PHPUnit 3 to PHPUnit 4. In most cases, no
43-
> changes were necessary. However, due to the migration, tests may not run on
44-
> versions < 2.4. As such, you may need to change the PHPUnit dependency if
45-
> attempting a fix on such a version.
46-
4718
To run tests:
4819

4920
- Clone the repository:
5021

5122
```console
52-
$ git clone git@github.com:zendframework/zend-uri.git
53-
$ cd
23+
$ git clone git://github.com/zendframework/zend-uri.git
24+
$ cd zend-uri
5425
```
5526

5627
- Install dependencies via composer:
5728

5829
```console
59-
$ curl -sS https://getcomposer.org/installer | php --
60-
$ ./composer.phar install
30+
$ composer install
6131
```
6232

63-
If you don't have `curl` installed, you can also download `composer.phar` from https://getcomposer.org/
33+
If you don't have `composer` installed, please download it from https://getcomposer.org/download/
6434

65-
- Run the tests via `phpunit` and the provided PHPUnit config, like in this example:
35+
- Run the tests using the "test" command shipped in the `composer.json`:
6636

6737
```console
68-
$ ./vendor/bin/phpunit
38+
$ composer test
6939
```
7040

71-
You can turn on conditional tests with the phpunit.xml file.
41+
You can turn on conditional tests with the `phpunit.xml` file.
7242
To do so:
7343

7444
- Copy `phpunit.xml.dist` file to `phpunit.xml`
@@ -77,24 +47,22 @@ To do so:
7747

7848
## Running Coding Standards Checks
7949

80-
This component uses [phpcs](https://github.com/squizlabs/PHP_CodeSniffer) for coding
81-
standards checks, and provides configuration for our selected checks.
82-
`phpcs` is installed by default via Composer.
50+
First, ensure you've installed dependencies via composer, per the previous
51+
section on running tests.
8352

84-
To run checks only:
53+
To run CS checks only:
8554

8655
```console
8756
$ composer cs-check
8857
```
8958

90-
`phpcs` also includes a tool for fixing most CS violations, `phpcbf`:
91-
59+
To attempt to automatically fix common CS issues:
9260

9361
```console
9462
$ composer cs-fix
9563
```
9664

97-
If you allow `phpcbf` to fix CS issues, please re-run the tests to ensure
65+
If the above fixes any CS issues, please re-run the tests to ensure
9866
they pass, and make sure you add and commit the changes after verification.
9967

10068
## Recommended Workflow for Contributions
@@ -103,12 +71,12 @@ Your first step is to establish a public repository from which we can
10371
pull your work into the master repository. We recommend using
10472
[GitHub](https://github.com), as that is where the component is already hosted.
10573

106-
1. Setup a [GitHub account](http://github.com/), if you haven't yet
107-
2. Fork the repository (http://github.com/zendframework/zend-uri)
74+
1. Setup a [GitHub account](https://github.com/), if you haven't yet
75+
2. Fork the repository (https://github.com/zendframework/zend-uri)
10876
3. Clone the canonical repository locally and enter it.
10977

11078
```console
111-
$ git clone git://github.com:zendframework/zend-uri.git
79+
$ git clone git://github.com/zendframework/zend-uri.git
11280
$ cd zend-uri
11381
```
11482

@@ -188,15 +156,7 @@ To send a pull request, you have two options.
188156
If using GitHub, you can do the pull request from there. Navigate to
189157
your repository, select the branch you just created, and then select the
190158
"Pull Request" button in the upper right. Select the user/organization
191-
"zendframework" as the recipient.
192-
193-
If using your own repository - or even if using GitHub - you can use `git
194-
format-patch` to create a patchset for us to apply; in fact, this is
195-
**recommended** for security-related patches. If you use `format-patch`, please
196-
send the patches as attachments to:
197-
198-
- zf-devteam@zend.com for patches without security implications
199-
- zf-security@zend.com for security patches
159+
"zendframework" (or whatever the upstream organization is) as the recipient.
200160

201161
#### What branch to issue the pull request against?
202162

@@ -227,8 +187,3 @@ repository, we suggest doing some cleanup of these branches.
227187
```console
228188
$ git push {username} :<branchname>
229189
```
230-
231-
232-
## Conduct
233-
234-
Please see our [CONDUCT.md](CONDUCT.md) to understand expected behavior when interacting with others in the project.

‎docs/ISSUE_TEMPLATE.md

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
- [ ] I was not able to find an [open](https://github.com/zendframework/zend-uri/issues?q=is%3Aopen) or [closed](https://github.com/zendframework/zend-uri/issues?q=is%3Aclosed) issue matching what I'm seeing.
2+
- [ ] This is not a question. (Questions should be asked on [chat](https://zendframework.slack.com/) ([Signup here](https://zendframework-slack.herokuapp.com/)) or our [forums](https://discourse.zendframework.com/).)
3+
4+
Provide a narrative description of what you are trying to accomplish.
5+
6+
### Code to reproduce the issue
7+
8+
<!-- Please provide the minimum code necessary to recreate the issue -->
9+
10+
```php
11+
```
12+
13+
### Expected results
14+
15+
<!-- What do you think should have happened? -->
16+
17+
### Actual results
18+
19+
<!-- What did you actually observe? -->

‎docs/PULL_REQUEST_TEMPLATE.md

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
Provide a narrative description of what you are trying to accomplish:
2+
3+
- [ ] Are you fixing a bug?
4+
- [ ] Detail how the bug is invoked currently.
5+
- [ ] Detail the original, incorrect behavior.
6+
- [ ] Detail the new, expected behavior.
7+
- [ ] Base your feature on the `master` branch, and submit against that branch.
8+
- [ ] Add a regression test that demonstrates the bug, and proves the fix.
9+
- [ ] Add a `CHANGELOG.md` entry for the fix.
10+
11+
- [ ] Are you creating a new feature?
12+
- [ ] Why is the new feature needed? What purpose does it serve?
13+
- [ ] How will users use the new feature?
14+
- [ ] Base your feature on the `develop` branch, and submit against that branch.
15+
- [ ] Add only one feature per pull request; split multiple features over multiple pull requests
16+
- [ ] Add tests for the new feature.
17+
- [ ] Add documentation for the new feature.
18+
- [ ] Add a `CHANGELOG.md` entry for the new feature.
19+
20+
- [ ] Is this related to quality assurance?
21+
<!-- Detail why the changes are necessary -->
22+
23+
- [ ] Is this related to documentation?
24+
<!-- Is it a typographical and/or grammatical fix? -->
25+
<!-- Is it new documentation? -->

‎docs/SUPPORT.md

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Getting Support
2+
3+
Zend Framework offers three support channels:
4+
5+
- For real-time questions, use our
6+
[chat](https://zendframework-slack.herokuapp.com)
7+
- For detailed questions (e.g., those requiring examples) use our
8+
[forums](https://discourse.zendframework.com/c/questions/components)
9+
- To report issues, use this repository's
10+
[issue tracker](https://github.com/zendframework/zend-uri/issues/new)
11+
12+
**DO NOT** use the issue tracker to ask questions; use chat or the forums for
13+
that. Questions posed to the issue tracker will be closed.
14+
15+
When reporting an issue, please include the following details:
16+
17+
- A narrative description of what you are trying to accomplish.
18+
- The minimum code necessary to reproduce the issue.
19+
- The expected results of exercising that code.
20+
- The actual results received.
21+
22+
We may ask for additional details: what version of the library you are using,
23+
and what PHP version was used to reproduce the issue.
24+
25+
You may also submit a failing test case as a pull request.

‎doc/book/index.html ‎docs/book/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<div class="container">
22
<div class="jumbotron">
33
<h1>zend-uri</h1>
4-
4+
55
<p>Object oriented interface to URIs, with facilities for validation.</p>
66

77
<pre><code class="language-bash">$ composer require zendframework/zend-uri</code></pre>
File renamed without changes.

‎doc/book/intro.md ‎docs/book/intro.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Introduction
22

3-
zend-uri aids in manipulating and validating [Uniform
3+
zend-uri aids in manipulating and validating [Uniform
44
Resource Identifiers](http://www.w3.org/Addressing/)
55
([URIs](http://www.ietf.org/rfc/rfc3986.txt)). zend-uri exists primarily
66
to assist other components, such as
7-
[zend-http](https://zendframework.github.io/zend-http/), but is also useful as a
7+
[zend-http](https://docs.zendframework.com/zend-http/), but is also useful as a
88
standalone utility.
99

1010
URIs always begin with a scheme, followed by a colon. The construction of the
File renamed without changes.

‎mkdocs.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
docs_dir: doc/book
2-
site_dir: doc/html
1+
docs_dir: docs/book
2+
site_dir: docs/html
33
pages:
44
- index.md
55
- Intro: intro.md
66
- Usage: usage.md
77
site_name: zend-uri
88
site_description: zend-uri
99
repo_url: 'https://github.com/zendframework/zend-uri'
10-
copyright: 'Copyright (c) 2016 <a href="http://www.zend.com/">Zend Technologies USA Inc.</a>'
10+
copyright: 'Copyright (c) 2005-2018 <a href="https://www.zend.com/">Zend Technologies USA Inc.</a>'

‎phpunit.xml.dist

+4-29
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,17 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd"
4-
bootstrap="./test/bootstrap.php"
3+
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
4+
bootstrap="vendor/autoload.php"
55
colors="true">
66
<testsuites>
77
<testsuite name="zend-uri Test Suite">
8-
<directory>./test/</directory>
8+
<directory>./test</directory>
99
</testsuite>
1010
</testsuites>
1111

12-
<groups>
13-
<exclude>
14-
<group>disable</group>
15-
</exclude>
16-
</groups>
17-
1812
<filter>
19-
<whitelist addUncoveredFilesFromWhitelist="true">
13+
<whitelist processUncoveredFilesFromWhitelist="true">
2014
<directory suffix=".php">./src</directory>
2115
</whitelist>
2216
</filter>
23-
24-
<php>
25-
<ini name="date.timezone" value="UTC"/>
26-
27-
<!-- OB_ENABLED should be enabled for some tests to check if all
28-
functionality works as expected. Such tests include those for
29-
Zend\Soap and Zend\Session, which require that headers not be sent
30-
in order to work. -->
31-
<env name="TESTS_ZEND_OB_ENABLED" value="false" />
32-
33-
<!-- Zend\Uri tests
34-
35-
Setting CRASH_TEST_ENABLED to true will enable some tests that may
36-
potentially crash PHP on some systems, due to very deep-nesting
37-
regular expressions.
38-
39-
Only do this if you know what you are doing! -->
40-
<env name="TESTS_ZEND_URI_CRASH_TEST_ENABLED" value="false" />
41-
</php>
4217
</phpunit>

‎src/Exception/ExceptionInterface.php

+3-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
<?php
22
/**
3-
* Zend Framework (http://framework.zend.com/)
4-
*
5-
* @link http://github.com/zendframework/zf2 for the canonical source repository
6-
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
7-
* @license http://framework.zend.com/license/new-bsd New BSD License
3+
* @see https://github.com/zendframework/zend-uri for the canonical source repository
4+
* @copyright Copyright (c) 2005-2018 Zend Technologies USA Inc. (https://www.zend.com)
5+
* @license https://github.com/zendframework/zend-uri/blob/master/LICENSE.md New BSD License
86
*/
97

108
namespace Zend\Uri\Exception;

‎src/Exception/InvalidArgumentException.php

+3-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
<?php
22
/**
3-
* Zend Framework (http://framework.zend.com/)
4-
*
5-
* @link http://github.com/zendframework/zf2 for the canonical source repository
6-
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
7-
* @license http://framework.zend.com/license/new-bsd New BSD License
3+
* @see https://github.com/zendframework/zend-uri for the canonical source repository
4+
* @copyright Copyright (c) 2005-2018 Zend Technologies USA Inc. (https://www.zend.com)
5+
* @license https://github.com/zendframework/zend-uri/blob/master/LICENSE.md New BSD License
86
*/
97

108
namespace Zend\Uri\Exception;

‎src/Exception/InvalidUriException.php

+3-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
<?php
22
/**
3-
* Zend Framework (http://framework.zend.com/)
4-
*
5-
* @link http://github.com/zendframework/zf2 for the canonical source repository
6-
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
7-
* @license http://framework.zend.com/license/new-bsd New BSD License
3+
* @see https://github.com/zendframework/zend-uri for the canonical source repository
4+
* @copyright Copyright (c) 2005-2018 Zend Technologies USA Inc. (https://www.zend.com)
5+
* @license https://github.com/zendframework/zend-uri/blob/master/LICENSE.md New BSD License
86
*/
97

108
namespace Zend\Uri\Exception;

‎src/Exception/InvalidUriPartException.php

+3-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
<?php
22
/**
3-
* Zend Framework (http://framework.zend.com/)
4-
*
5-
* @link http://github.com/zendframework/zf2 for the canonical source repository
6-
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
7-
* @license http://framework.zend.com/license/new-bsd New BSD License
3+
* @see https://github.com/zendframework/zend-uri for the canonical source repository
4+
* @copyright Copyright (c) 2005-2018 Zend Technologies USA Inc. (https://www.zend.com)
5+
* @license https://github.com/zendframework/zend-uri/blob/master/LICENSE.md New BSD License
86
*/
97

108
namespace Zend\Uri\Exception;

‎src/File.php

+3-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
<?php
22
/**
3-
* Zend Framework (http://framework.zend.com/)
4-
*
5-
* @link http://github.com/zendframework/zf2 for the canonical source repository
6-
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
7-
* @license http://framework.zend.com/license/new-bsd New BSD License
3+
* @see https://github.com/zendframework/zend-uri for the canonical source repository
4+
* @copyright Copyright (c) 2005-2018 Zend Technologies USA Inc. (https://www.zend.com)
5+
* @license https://github.com/zendframework/zend-uri/blob/master/LICENSE.md New BSD License
86
*/
97

108
namespace Zend\Uri;

‎src/Http.php

+3-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
<?php
22
/**
3-
* Zend Framework (http://framework.zend.com/)
4-
*
5-
* @link http://github.com/zendframework/zf2 for the canonical source repository
6-
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
7-
* @license http://framework.zend.com/license/new-bsd New BSD License
3+
* @see https://github.com/zendframework/zend-uri for the canonical source repository
4+
* @copyright Copyright (c) 2005-2018 Zend Technologies USA Inc. (https://www.zend.com)
5+
* @license https://github.com/zendframework/zend-uri/blob/master/LICENSE.md New BSD License
86
*/
97

108
namespace Zend\Uri;

‎src/Mailto.php

+3-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
<?php
22
/**
3-
* Zend Framework (http://framework.zend.com/)
4-
*
5-
* @link http://github.com/zendframework/zf2 for the canonical source repository
6-
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
7-
* @license http://framework.zend.com/license/new-bsd New BSD License
3+
* @see https://github.com/zendframework/zend-uri for the canonical source repository
4+
* @copyright Copyright (c) 2005-2018 Zend Technologies USA Inc. (https://www.zend.com)
5+
* @license https://github.com/zendframework/zend-uri/blob/master/LICENSE.md New BSD License
86
*/
97

108
namespace Zend\Uri;

‎src/Uri.php

+3-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
<?php
22
/**
3-
* Zend Framework (http://framework.zend.com/)
4-
*
5-
* @link http://github.com/zendframework/zf2 for the canonical source repository
6-
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
7-
* @license http://framework.zend.com/license/new-bsd New BSD License
3+
* @see https://github.com/zendframework/zend-uri for the canonical source repository
4+
* @copyright Copyright (c) 2005-2018 Zend Technologies USA Inc. (https://www.zend.com)
5+
* @license https://github.com/zendframework/zend-uri/blob/master/LICENSE.md New BSD License
86
*/
97

108
namespace Zend\Uri;

‎src/UriFactory.php

+3-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
<?php
22
/**
3-
* Zend Framework (http://framework.zend.com/)
4-
*
5-
* @link http://github.com/zendframework/zf2 for the canonical source repository
6-
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
7-
* @license http://framework.zend.com/license/new-bsd New BSD License
3+
* @see https://github.com/zendframework/zend-uri for the canonical source repository
4+
* @copyright Copyright (c) 2005-2018 Zend Technologies USA Inc. (https://www.zend.com)
5+
* @license https://github.com/zendframework/zend-uri/blob/master/LICENSE.md New BSD License
86
*/
97

108
namespace Zend\Uri;

‎src/UriInterface.php

+3-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
<?php
22
/**
3-
* Zend Framework (http://framework.zend.com/)
4-
*
5-
* @link http://github.com/zendframework/zf2 for the canonical source repository
6-
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
7-
* @license http://framework.zend.com/license/new-bsd New BSD License
3+
* @see https://github.com/zendframework/zend-uri for the canonical source repository
4+
* @copyright Copyright (c) 2005-2018 Zend Technologies USA Inc. (https://www.zend.com)
5+
* @license https://github.com/zendframework/zend-uri/blob/master/LICENSE.md New BSD License
86
*/
97

108
namespace Zend\Uri;

‎test/FileTest.php

+3-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
<?php
22
/**
3-
* Zend Framework (http://framework.zend.com/)
4-
*
5-
* @link http://github.com/zendframework/zf2 for the canonical source repository
6-
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
7-
* @license http://framework.zend.com/license/new-bsd New BSD License
3+
* @see https://github.com/zendframework/zend-uri for the canonical source repository
4+
* @copyright Copyright (c) 2005-2018 Zend Technologies USA Inc. (https://www.zend.com)
5+
* @license https://github.com/zendframework/zend-uri/blob/master/LICENSE.md New BSD License
86
*/
97

108
namespace ZendTest\Uri;

‎test/HttpTest.php

+3-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
<?php
22
/**
3-
* Zend Framework (http://framework.zend.com/)
4-
*
5-
* @link http://github.com/zendframework/zf2 for the canonical source repository
6-
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
7-
* @license http://framework.zend.com/license/new-bsd New BSD License
3+
* @see https://github.com/zendframework/zend-uri for the canonical source repository
4+
* @copyright Copyright (c) 2005-2018 Zend Technologies USA Inc. (https://www.zend.com)
5+
* @license https://github.com/zendframework/zend-uri/blob/master/LICENSE.md New BSD License
86
*/
97

108
namespace ZendTest\Uri;

‎test/MailtoTest.php

+3-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
<?php
22
/**
3-
* Zend Framework (http://framework.zend.com/)
4-
*
5-
* @link http://github.com/zendframework/zf2 for the canonical source repository
6-
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
7-
* @license http://framework.zend.com/license/new-bsd New BSD License
3+
* @see https://github.com/zendframework/zend-uri for the canonical source repository
4+
* @copyright Copyright (c) 2005-2018 Zend Technologies USA Inc. (https://www.zend.com)
5+
* @license https://github.com/zendframework/zend-uri/blob/master/LICENSE.md New BSD License
86
*/
97

108
namespace ZendTest\Uri;

‎test/UriFactoryTest.php

+3-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
<?php
22
/**
3-
* Zend Framework (http://framework.zend.com/)
4-
*
5-
* @link http://github.com/zendframework/zf2 for the canonical source repository
6-
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
7-
* @license http://framework.zend.com/license/new-bsd New BSD License
3+
* @see https://github.com/zendframework/zend-uri for the canonical source repository
4+
* @copyright Copyright (c) 2005-2018 Zend Technologies USA Inc. (https://www.zend.com)
5+
* @license https://github.com/zendframework/zend-uri/blob/master/LICENSE.md New BSD License
86
*/
97

108
namespace ZendTest\Uri;

‎test/UriTest.php

+3-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
<?php
22
/**
3-
* Zend Framework (http://framework.zend.com/)
4-
*
5-
* @link http://github.com/zendframework/zf2 for the canonical source repository
6-
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
7-
* @license http://framework.zend.com/license/new-bsd New BSD License
3+
* @see https://github.com/zendframework/zend-uri for the canonical source repository
4+
* @copyright Copyright (c) 2005-2018 Zend Technologies USA Inc. (https://www.zend.com)
5+
* @license https://github.com/zendframework/zend-uri/blob/master/LICENSE.md New BSD License
86
*/
97

108
namespace ZendTest\Uri;

‎test/bootstrap.php

-34
This file was deleted.

0 commit comments

Comments
 (0)
This repository has been archived.