This repository has been archived by the owner on Jan 31, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
43 changed files
with
211 additions
and
177 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
/test export-ignore | ||
/vendor export-ignore | ||
.coveralls.yml export-ignore | ||
.gitattributes export-ignore | ||
.gitignore export-ignore | ||
.travis.yml export-ignore | ||
.php_cs export-ignore | ||
phpunit.xml.dist export-ignore | ||
/.coveralls.yml export-ignore | ||
/.gitattributes export-ignore | ||
/.gitignore export-ignore | ||
/.travis.yml export-ignore | ||
/docs/ export-ignore | ||
/mkdocs.yml export-ignore | ||
/phpcs.xml export-ignore | ||
/phpunit.xml.dist export-ignore | ||
/test/ export-ignore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,8 @@ | ||
.buildpath | ||
.DS_Store | ||
.idea | ||
.project | ||
.settings/ | ||
.*.sw* | ||
.*.un~ | ||
nbproject | ||
doc/html/ | ||
tmp/ | ||
vendor/ | ||
zf-mkdoc-theme/ | ||
|
||
clover.xml | ||
composer.lock | ||
coveralls-upload.json | ||
phpunit.xml | ||
/clover.xml | ||
/composer.lock | ||
/coveralls-upload.json | ||
/docs/html/ | ||
/phpunit.xml | ||
/vendor/ | ||
/zf-mkdoc-theme.tgz | ||
/zf-mkdoc-theme/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,26 @@ | ||
# zend-view | ||
|
||
[![Build Status](https://secure.travis-ci.org/zendframework/zend-view.svg?branch=master)](https://secure.travis-ci.org/zendframework/zend-view) | ||
[![Coverage Status](https://coveralls.io/repos/zendframework/zend-view/badge.svg?branch=master)](https://coveralls.io/r/zendframework/zend-view?branch=master) | ||
[![Coverage Status](https://coveralls.io/repos/github/zendframework/zend-view/badge.svg?branch=master)](https://coveralls.io/github/zendframework/zend-view?branch=master) | ||
|
||
zend-view provides the “View” layer of the Zend Framework MVC system. It is a | ||
multi-tiered system allowing a variety of mechanisms for extension, | ||
substitution, and more. | ||
|
||
- File issues at https://github.com/zendframework/zend-view/issues | ||
- Documentation is at https://zendframework.github.io/zend-view/ | ||
## Installation | ||
|
||
Run the following to install this library: | ||
|
||
```bash | ||
$ composer require zendframework/zend-view | ||
``` | ||
|
||
## Documentation | ||
|
||
Browse the documentation online at https://docs.zendframework.com/zend-view/ | ||
|
||
## Support | ||
|
||
* [Issues](https://github.com/zendframework/zend-view/issues/) | ||
* [Chat](https://zendframework-slack.herokuapp.com/) | ||
* [Forum](https://discourse.zendframework.com/) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
- [ ] I was not able to find an [open](https://github.com/zendframework/zend-view/issues?q=is%3Aopen) or [closed](https://github.com/zendframework/zend-view/issues?q=is%3Aclosed) issue matching what I'm seeing. | ||
- [ ] 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/).) | ||
|
||
Provide a narrative description of what you are trying to accomplish. | ||
|
||
### Code to reproduce the issue | ||
|
||
<!-- Please provide the minimum code necessary to recreate the issue --> | ||
|
||
```php | ||
``` | ||
|
||
### Expected results | ||
|
||
<!-- What do you think should have happened? --> | ||
|
||
### Actual results | ||
|
||
<!-- What did you actually observe? --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
Provide a narrative description of what you are trying to accomplish: | ||
|
||
- [ ] Are you fixing a bug? | ||
- [ ] Detail how the bug is invoked currently. | ||
- [ ] Detail the original, incorrect behavior. | ||
- [ ] Detail the new, expected behavior. | ||
- [ ] Base your feature on the `master` branch, and submit against that branch. | ||
- [ ] Add a regression test that demonstrates the bug, and proves the fix. | ||
- [ ] Add a `CHANGELOG.md` entry for the fix. | ||
|
||
- [ ] Are you creating a new feature? | ||
- [ ] Why is the new feature needed? What purpose does it serve? | ||
- [ ] How will users use the new feature? | ||
- [ ] Base your feature on the `develop` branch, and submit against that branch. | ||
- [ ] Add only one feature per pull request; split multiple features over multiple pull requests | ||
- [ ] Add tests for the new feature. | ||
- [ ] Add documentation for the new feature. | ||
- [ ] Add a `CHANGELOG.md` entry for the new feature. | ||
|
||
- [ ] Is this related to quality assurance? | ||
<!-- Detail why the changes are necessary --> | ||
|
||
- [ ] Is this related to documentation? | ||
<!-- Is it a typographical and/or grammatical fix? --> | ||
<!-- Is it new documentation? --> |
Oops, something went wrong.