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

Commit 284f51c

Browse files
committed
Merge branch 'release/2.14.2'
2 parents 6bb6131 + 3c6224e commit 284f51c

File tree

10 files changed

+32
-30
lines changed

10 files changed

+32
-30
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

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

5-
## 2.14.2 - TBD
5+
## 2.14.2 - 2019-10-03
66

77
### Added
88

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2005-2017, Zend Technologies USA, Inc.
1+
Copyright (c) 2005-2019, Zend Technologies USA, Inc.
22
All rights reserved.
33

44
Redistribution and use in source and binary forms, with or without modification,

README.md

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,20 @@ the View Layer. It composes a thin layer of objects representing form elements,
88
an InputFilter, and a small number of methods for binding data to and from the
99
form and attached objects.
1010

11-
- File issues at https://github.com/zendframework/zend-form/issues
12-
- Ask questions at https://discourse.zendframework.com/c/questions/components
13-
(use the tag zend-form)
14-
- Documentation is at https://docs.zendframework.com/zend-form/
11+
## Installation
12+
13+
Run the following to install this library:
14+
15+
```bash
16+
$ composer require zendframework/zend-form
17+
```
18+
19+
## Documentation
20+
21+
Browse the documentation online at https://docs.zendframework.com/zend-form/
22+
23+
## Support
24+
25+
* [Issues](https://github.com/zendframework/zend-form/issues/)
26+
* [Chat](https://zendframework-slack.herokuapp.com/)
27+
* [Forum](https://discourse.zendframework.com/)

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"issues": "https://github.com/zendframework/zend-form/issues",
1313
"source": "https://github.com/zendframework/zend-form",
1414
"rss": "https://github.com/zendframework/zend-form/releases.atom",
15-
"slack": "https://zendframework-slack.herokuapp.com",
15+
"chat": "https://zendframework-slack.herokuapp.com",
1616
"forum": "https://discourse.zendframework.com/c/questions/components"
1717
},
1818
"require": {

docs/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ read/subscribe to the following resources:
77

88
- [Coding Standards](https://github.com/zendframework/zend-coding-standard)
99
- [Forums](https://discourse.zendframework.com/c/contributors)
10-
- [Slack](https://zendframework-slack.herokuapp.com)
10+
- [Chat](https://zendframework-slack.herokuapp.com)
1111
- [Code of Conduct](CODE_OF_CONDUCT.md)
1212

1313
If you are working on new features or refactoring

docs/ISSUE_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
- [ ] I was not able to find an [open](https://github.com/zendframework/zend-form/issues?q=is%3Aopen) or [closed](https://github.com/zendframework/zend-form/issues?q=is%3Aclosed) issue matching what I'm seeing.
2-
- [ ] This is not a question. (Questions should be asked on [slack](https://zendframework.slack.com/) ([Signup for Slack here](https://zendframework-slack.herokuapp.com/)) or our [forums](https://discourse.zendframework.com/).)
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/).)
33

44
Provide a narrative description of what you are trying to accomplish.
55

docs/SUPPORT.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
Zend Framework offers three support channels:
44

55
- For real-time questions, use our
6-
[Slack](https://zendframework-slack.herokuapp.com)
6+
[chat](https://zendframework-slack.herokuapp.com)
77
- For detailed questions (e.g., those requiring examples) use our
88
[forums](https://discourse.zendframework.com/c/questions/components)
99
- To report issues, use this repository's
1010
[issue tracker](https://github.com/zendframework/zend-form/issues/new)
1111

12-
**DO NOT** use the issue tracker to ask questions; use Slack or the forums for
12+
**DO NOT** use the issue tracker to ask questions; use chat or the forums for
1313
that. Questions posed to the issue tracker will be closed.
1414

1515
When reporting an issue, please include the following details:

docs/book/file-upload.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -212,22 +212,22 @@ public function handle(ServerRequestInterface $request) : ResponseInterface
212212
$request->getParsedBody(),
213213
$request->getUploadedFiles()
214214
);
215-
215+
216216
$form->setData($post);
217-
217+
218218
if ($form->isValid()) {
219219
$data = $form->getData();
220-
220+
221221
// Form is valid, save the form!
222-
222+
223223
return new RedirectResponse('upload-form/success');
224224
}
225225
}
226-
226+
227227
return new HtmlResponse(
228228
$this->template->render('app::page-template', [
229229
'form' => $form,
230-
]);
230+
]);
231231
);
232232
}
233233
```
@@ -329,7 +329,7 @@ documentation for more information on its supported options.
329329
> contain an expired stream and outdated target file name. After running this filter,
330330
> _do not use_ the request object to get further details about the uploaded file;
331331
> use the new instance of `UploadedFileInterface` returned from the filter
332-
> invocation.
332+
> invocation.
333333
334334
### Call the fileprg plugin
335335

docs/book/index.html

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

mkdocs.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
docs_dir: docs/book
22
site_dir: docs/html
3-
pages:
3+
nav:
44
- Home: index.md
55
- Introduction: intro.md
66
- "Quick Start": quick-start.md
@@ -86,4 +86,3 @@ pages:
8686
site_name: zend-form
8787
site_description: "Validate and display simple and complex forms, casting forms to business objects and vice versa."
8888
repo_url: 'https://github.com/zendframework/zend-form'
89-
copyright: 'Copyright (c) 2005-2019 <a href="http://www.zend.com/">Zend Technologies USA Inc.</a>'

0 commit comments

Comments
 (0)