Skip to content

Commit d00c4f7

Browse files
committed
Rewriting as Laminas Project package
1 parent 10a345b commit d00c4f7

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

Lines changed: 0 additions & 1 deletion
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

Lines changed: 1 addition & 0 deletions
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

Lines changed: 2 additions & 17 deletions
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

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ All notable changes to this project will be documented in this file, in reverse
2828

2929
### Added
3030

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

3333
### Changed
3434

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

4141
### Removed
4242

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

4545
### Fixed
4646

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

6363
### Fixed
6464

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

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

8484
### Fixed
8585

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

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

104104
### Fixed
105105

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

111111
## 1.2.0 - 2016-07-06
112112

113113
### Added
114114

115-
- [#45](https://github.com/zfcampus/zf-api-problem/pull/45) adds support for PHP 7.
116-
- [#44](https://github.com/zfcampus/zf-api-problem/pull/44) and
117-
[#45](https://github.com/zfcampus/zf-api-problem/pull/45) add support for
118-
version 3 components of Zend Framework.
119-
- [#39](https://github.com/zfcampus/zf-api-problem/pull/39) adds the constant
115+
- [zfcampus/zf-api-problem#45](https://github.com/zfcampus/zf-api-problem/pull/45) adds support for PHP 7.
116+
- [zfcampus/zf-api-problem#44](https://github.com/zfcampus/zf-api-problem/pull/44) and
117+
[zfcampus/zf-api-problem#45](https://github.com/zfcampus/zf-api-problem/pull/45) add support for
118+
version 3 components of Laminas.
119+
- [zfcampus/zf-api-problem#39](https://github.com/zfcampus/zf-api-problem/pull/39) adds the constant
120120
`ApiProblem::CONTENT_TYPE` for specifying the Content-Type of API Problem
121121
responses.
122122

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

127127
### Removed
128128

129-
- [#45](https://github.com/zfcampus/zf-api-problem/pull/45) removes support for
129+
- [zfcampus/zf-api-problem#45](https://github.com/zfcampus/zf-api-problem/pull/45) removes support for
130130
PHP 5.6.
131-
- [#45](https://github.com/zfcampus/zf-api-problem/pull/45) removes the
131+
- [zfcampus/zf-api-problem#45](https://github.com/zfcampus/zf-api-problem/pull/45) removes the
132132
`Module::getAutoloaderConfig()` implementation, as it was redundant in
133133
composer-based applications.
134134

135135
### Fixed
136136

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

CODE_OF_CONDUCT.md

Lines changed: 0 additions & 43 deletions
This file was deleted.

CONTRIBUTING.md

Lines changed: 0 additions & 189 deletions
This file was deleted.

COPYRIGHT.md

Lines changed: 2 additions & 0 deletions
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)