Skip to content

Commit 2a0b4de

Browse files
committed
Rewriting as Laminas Project package
1 parent e5140af commit 2a0b4de

37 files changed

+300
-2972
lines changed

.gitignore

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
vendor/
2-
.idea/
3-
phpunit.xml
1+
/composer.lock
2+
/phpunit.xml
3+
/vendor/

.travis.yml

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
sudo: false
2-
31
language: php
42

53
cache:
@@ -17,22 +15,16 @@ matrix:
1715
- php: 5.6
1816
env:
1917
- DEPS=lowest
20-
- php: 5.6
21-
env:
22-
- DEPS=locked
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-
- CS_CHECK=true
3324
- php: 7
3425
env:
3526
- DEPS=latest
27+
- CS_CHECK=true
3628
- php: hhvm
3729
env:
3830
- DEPS=lowest
@@ -46,7 +38,6 @@ matrix:
4638
- php: hhvm
4739

4840
notifications:
49-
irc: "irc.freenode.org#apigility-dev"
5041
email: false
5142

5243
before_install:

CHANGELOG.md

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

1919
### Fixed
2020

21-
- [#53](https://github.com/zfcampus/zf-apigility-documentation/pull/53) fixes an
21+
- [zfcampus/zf-apigility-documentation#53](https://github.com/zfcampus/zf-apigility-documentation/pull/53) fixes an
2222
import statement in the configuration file.
2323

2424
## 1.2.1 - 2016-08-04
@@ -37,29 +37,29 @@ All notable changes to this project will be documented in this file, in reverse
3737

3838
### Fixed
3939

40-
- [#48](https://github.com/zfcampus/zf-apigility-documentation/pull/48) updates
40+
- [zfcampus/zf-apigility-documentation#48](https://github.com/zfcampus/zf-apigility-documentation/pull/48) updates
4141
the `ControllerFactory` implementation to be forwards compatible with
42-
zend-servicemanager v3.
42+
laminas-servicemanager v3.
4343

4444
## 1.2.0 - 2016-07-14
4545

4646
### Added
4747

48-
- [#43](https://github.com/zfcampus/zf-apigility-documentation/pull/43) adds
49-
support for v3 releases of Zend Framework components, while retaining support
48+
- [zfcampus/zf-apigility-documentation#43](https://github.com/zfcampus/zf-apigility-documentation/pull/43) adds
49+
support for v3 releases of Laminas components, while retaining support
5050
for v2 releases.
51-
- [#43](https://github.com/zfcampus/zf-apigility-documentation/pull/43) extracts
51+
- [zfcampus/zf-apigility-documentation#43](https://github.com/zfcampus/zf-apigility-documentation/pull/43) extracts
5252
the `ApiFactory` factory inlined in the `Module` class to a first-class
53-
factory, `ZF\Apigility\Documentation\Factory\ApiFactoryFactory`.
54-
- [#19](https://github.com/zfcampus/zf-apigility-documentation/pull/19) adds
53+
factory, `Laminas\ApiTools\Documentation\Factory\ApiFactoryFactory`.
54+
- [zfcampus/zf-apigility-documentation#19](https://github.com/zfcampus/zf-apigility-documentation/pull/19) adds
5555
support for displaying documentation of APIs with nested namespaces (e.g.,
5656
`Company\ApiName` vs just `ApiName`). Such services are now denoted with
5757
dot-notation: `Company.ApiName`.
58-
- [#35](https://github.com/zfcampus/zf-apigility-documentation/pull/35) adds
58+
- [zfcampus/zf-apigility-documentation#35](https://github.com/zfcampus/zf-apigility-documentation/pull/35) adds
5959
a new view helper, `agTransformDescription()`, which will transform markdown
6060
descriptions to HTML. This is now used by default in the supplied view
6161
scripts. **This means you can now use markdown in your API descriptions!**
62-
- [#38](https://github.com/zfcampus/zf-apigility-documentation/pull/38) updates
62+
- [zfcampus/zf-apigility-documentation#38](https://github.com/zfcampus/zf-apigility-documentation/pull/38) updates
6363
the `Field` class to allow setting the field type, and updates the operation
6464
view script to now display field types for given operations.
6565

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

7070
### Removed
7171

72-
- [#43](https://github.com/zfcampus/zf-apigility-documentation/pull/43) removes
72+
- [zfcampus/zf-apigility-documentation#43](https://github.com/zfcampus/zf-apigility-documentation/pull/43) removes
7373
support for PHP 5.5.
7474

7575
### Fixed
@@ -92,16 +92,16 @@ All notable changes to this project will be documented in this file, in reverse
9292

9393
### Fixed
9494

95-
- [#39](https://github.com/zfcampus/zf-apigility-documentation/pull/39) updates
96-
the component to properly display information about zend-inputfilter
95+
- [zfcampus/zf-apigility-documentation#39](https://github.com/zfcampus/zf-apigility-documentation/pull/39) updates
96+
the component to properly display information about laminas-inputfilter
9797
Collections when displaying operation validation information.
98-
- [#40](https://github.com/zfcampus/zf-apigility-documentation/pull/40) updates
98+
- [zfcampus/zf-apigility-documentation#40](https://github.com/zfcampus/zf-apigility-documentation/pull/40) updates
9999
the Operations view script to:
100100
- display HTTP method-specific fields first, if present.
101101
- display general fields only if they exist (the fix prevents an empty row
102102
displaying).
103103
- insert a closing `</span>` tag within the table data cell containing the
104104
required flag.
105-
- [#41](https://github.com/zfcampus/zf-apigility-documentation/pull/41) updates
105+
- [zfcampus/zf-apigility-documentation#41](https://github.com/zfcampus/zf-apigility-documentation/pull/41) updates
106106
the `ApiFactory` to ensure that if an entity has no collection associated with
107107
it, documentation will not attempt to retrieve the fields.

CONDUCT.md

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

CONTRIBUTING.md

Lines changed: 0 additions & 80 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/)

LICENSE.md

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,19 @@
1-
Copyright (c) 2014-2016, Zend Technologies USA, Inc.
2-
1+
Copyright (c) 2019, Laminas Foundation
32
All rights reserved.
43

5-
Redistribution and use in source and binary forms, with or without modification,
6-
are permitted provided that the following conditions are met:
4+
Redistribution and use in source and binary forms, with or without
5+
modification, 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

1110
- Redistributions in binary form must reproduce the above copyright notice,
1211
this list of conditions and the following disclaimer in the documentation
1312
and/or other materials provided with the distribution.
1413

15-
- Neither the name of Zend Technologies USA, Inc. nor the names of its
16-
contributors may be used to endorse or promote products derived from this
17-
software without specific prior written permission.
14+
- Neither the name of Laminas Foundation nor the names of its contributors may
15+
be used to endorse or promote products derived from this software without
16+
specific prior written permission.
1817

1918
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
2019
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED

0 commit comments

Comments
 (0)