Skip to content

Commit d4f3651

Browse files
committed
Rewriting as Laminas Project package
1 parent dc0d26b commit d4f3651

File tree

76 files changed

+754
-3437
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

76 files changed

+754
-3437
lines changed

.gitattributes

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
/.gitattributes export-ignore
33
/.gitignore export-ignore
44
/.travis.yml export-ignore
5-
/composer.lock export-ignore
65
/docs/ export-ignore
76
/phpcs.xml export-ignore
87
/phpunit.xml.dist export-ignore

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
/clover.xml
2+
/composer.lock
23
/coveralls-upload.json
34
/phpunit.xml
45
/vendor/

.travis.yml

+2-17
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
sudo: false
2-
31
language: php
42

53
cache:
@@ -12,24 +10,17 @@ env:
1210
- COVERAGE_DEPS="php-coveralls/php-coveralls"
1311

1412
matrix:
13+
fast_finish: true
1514
include:
1615
- php: 5.6
1716
env:
1817
- DEPS=lowest
19-
- php: 5.6
20-
env:
21-
- DEPS=locked
22-
- LEGACY_DEPS="phpunit/phpunit"
2318
- php: 5.6
2419
env:
2520
- DEPS=latest
2621
- php: 7
2722
env:
2823
- DEPS=lowest
29-
- php: 7
30-
env:
31-
- DEPS=locked
32-
- LEGACY_DEPS="phpunit/phpunit"
3324
- php: 7
3425
env:
3526
- DEPS=latest
@@ -38,18 +29,12 @@ matrix:
3829
- DEPS=lowest
3930
- php: 7.1
4031
env:
41-
- DEPS=locked
32+
- DEPS=latest
4233
- CS_CHECK=true
4334
- TEST_COVERAGE=true
44-
- php: 7.1
45-
env:
46-
- DEPS=latest
4735
- php: 7.2
4836
env:
4937
- DEPS=lowest
50-
- php: 7.2
51-
env:
52-
- DEPS=locked
5338
- php: 7.2
5439
env:
5540
- DEPS=latest

CHANGELOG.md

+18-18
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ All notable changes to this project will be documented in this file, in reverse
5050

5151
### Added
5252

53-
- [#58](https://github.com/zfcampus/zf-api-problem/pull/58) adds support for PHP 7.2.
53+
- [zfcampus/zf-api-problem#58](https://github.com/zfcampus/zf-api-problem/pull/58) adds support for PHP 7.2.
5454

5555
### Changed
5656

@@ -62,7 +62,7 @@ All notable changes to this project will be documented in this file, in reverse
6262

6363
### Removed
6464

65-
- [#58](https://github.com/zfcampus/zf-api-problem/pull/58) removes support for HHVM.
65+
- [zfcampus/zf-api-problem#58](https://github.com/zfcampus/zf-api-problem/pull/58) removes support for HHVM.
6666

6767
### Fixed
6868

@@ -84,8 +84,8 @@ All notable changes to this project will be documented in this file, in reverse
8484

8585
### Fixed
8686

87-
- [#52](https://github.com/zfcampus/zf-api-problem/pull/52) and
88-
[#55](https://github.com/zfcampus/zf-api-problem/pull/55) update the
87+
- [zfcampus/zf-api-problem#52](https://github.com/zfcampus/zf-api-problem/pull/52) and
88+
[zfcampus/zf-api-problem#55](https://github.com/zfcampus/zf-api-problem/pull/55) update the
8989
`ApiProblemListener` and `RenderErrorListener` to check for either exceptions
9090
or PHP 7 `Throwable` instances when creating an `ApiProblem` to return.
9191

@@ -105,7 +105,7 @@ All notable changes to this project will be documented in this file, in reverse
105105

106106
### Fixed
107107

108-
- [#49](https://github.com/zfcampus/zf-api-problem/pull/49) fixes `ApiProblem`'s
108+
- [zfcampus/zf-api-problem#49](https://github.com/zfcampus/zf-api-problem/pull/49) fixes `ApiProblem`'s
109109
detail message marshaling when PHP 7 `Throwable` types are provided as the
110110
detail.
111111

@@ -125,20 +125,20 @@ All notable changes to this project will be documented in this file, in reverse
125125

126126
### Fixed
127127

128-
- [#47](https://github.com/zfcampus/zf-api-problem/pull/47) fixes an issue with
128+
- [zfcampus/zf-api-problem#47](https://github.com/zfcampus/zf-api-problem/pull/47) fixes an issue with
129129
the various factories introduced in 1.2.0; they had been updated to implement the
130-
zend-servicemanager v3 interfaces, which broke usage with v2. They are now
130+
laminas-servicemanager v3 interfaces, which broke usage with v2. They are now
131131
written in a way that will work with both versions.
132132

133133
## 1.2.0 - 2016-07-06
134134

135135
### Added
136136

137-
- [#45](https://github.com/zfcampus/zf-api-problem/pull/45) adds support for PHP 7.
138-
- [#44](https://github.com/zfcampus/zf-api-problem/pull/44) and
139-
[#45](https://github.com/zfcampus/zf-api-problem/pull/45) add support for
140-
version 3 components of Zend Framework.
141-
- [#39](https://github.com/zfcampus/zf-api-problem/pull/39) adds the constant
137+
- [zfcampus/zf-api-problem#45](https://github.com/zfcampus/zf-api-problem/pull/45) adds support for PHP 7.
138+
- [zfcampus/zf-api-problem#44](https://github.com/zfcampus/zf-api-problem/pull/44) and
139+
[zfcampus/zf-api-problem#45](https://github.com/zfcampus/zf-api-problem/pull/45) add support for
140+
version 3 components of Laminas.
141+
- [zfcampus/zf-api-problem#39](https://github.com/zfcampus/zf-api-problem/pull/39) adds the constant
142142
`ApiProblem::CONTENT_TYPE` for specifying the Content-Type of API Problem
143143
responses.
144144

@@ -148,18 +148,18 @@ All notable changes to this project will be documented in this file, in reverse
148148

149149
### Removed
150150

151-
- [#45](https://github.com/zfcampus/zf-api-problem/pull/45) removes support for
151+
- [zfcampus/zf-api-problem#45](https://github.com/zfcampus/zf-api-problem/pull/45) removes support for
152152
PHP 5.6.
153-
- [#45](https://github.com/zfcampus/zf-api-problem/pull/45) removes the
153+
- [zfcampus/zf-api-problem#45](https://github.com/zfcampus/zf-api-problem/pull/45) removes the
154154
`Module::getAutoloaderConfig()` implementation, as it was redundant in
155155
composer-based applications.
156156

157157
### Fixed
158158

159-
- [#44](https://github.com/zfcampus/zf-api-problem/pull/44) and
160-
[#45](https://github.com/zfcampus/zf-api-problem/pull/45) ensure that
159+
- [zfcampus/zf-api-problem#44](https://github.com/zfcampus/zf-api-problem/pull/44) and
160+
[zfcampus/zf-api-problem#45](https://github.com/zfcampus/zf-api-problem/pull/45) ensure that
161161
definition and attachment of the listener aggregates defined in the module
162-
will work with both v2 and v3 versions of zend-eventmanager.
163-
- [#38](https://github.com/zfcampus/zf-api-problem/pull/38) fixes an issue
162+
will work with both v2 and v3 versions of laminas-eventmanager.
163+
- [zfcampus/zf-api-problem#38](https://github.com/zfcampus/zf-api-problem/pull/38) fixes an issue
164164
whereby JSON encoding failed for included stack traces if they originated
165165
within a PHP stream.

CODE_OF_CONDUCT.md

-43
This file was deleted.

CONTRIBUTING.md

-189
This file was deleted.

COPYRIGHT.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Copyright (c) 2019, Laminas Foundation.
2+
All rights reserved. (https://getlaminas.org/)

0 commit comments

Comments
 (0)