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

Commit 8b639af

Browse files
committed
Merge branch 'feature/186' into develop
Close #186
2 parents 72827c3 + d98aa27 commit 8b639af

Some content is hidden

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

97 files changed

+338
-308
lines changed

.gitattributes

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1-
/test export-ignore
2-
/vendor export-ignore
3-
.coveralls.yml export-ignore
4-
.gitattributes export-ignore
5-
.gitignore export-ignore
6-
.travis.yml export-ignore
7-
.php_cs export-ignore
8-
phpunit.xml.dist export-ignore
1+
/.coveralls.yml export-ignore
2+
/.gitattributes export-ignore
3+
/.gitignore export-ignore
4+
/.travis.yml export-ignore
5+
/composer.lock export-ignore
6+
/docs/ export-ignore
7+
/mkdocs.yml export-ignore
8+
/phpcs.xml export-ignore
9+
/phpunit.xml.dist export-ignore
10+
/test/ export-ignore

.gitignore

Lines changed: 7 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,7 @@
1-
.buildpath
2-
.DS_Store
3-
.idea
4-
.project
5-
.settings/
6-
.*.sw*
7-
.*.un~
8-
nbproject
9-
doc/html/
10-
tmp/
11-
zf-mkdoc-theme/
12-
13-
clover.xml
14-
coveralls-upload.json
15-
phpunit.xml
16-
vendor
1+
/clover.xml
2+
/coveralls-upload.json
3+
/docs/html/
4+
/phpunit.xml
5+
/vendor/
6+
/zf-mkdoc-theme.tgz
7+
/zf-mkdoc-theme/

LICENSE.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
1-
Copyright (c) 2005-2015, Zend Technologies USA, Inc.
2-
1+
Copyright (c) 2005-2017, Zend Technologies USA, Inc.
32
All rights reserved.
43

54
Redistribution and use in source and binary forms, with or without modification,
65
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

11-
- Redistributions in binary form must reproduce the above copyright notice,
12-
this list of conditions and the following disclaimer in the documentation
13-
and/or other materials provided with the distribution.
10+
- Redistributions in binary form must reproduce the above copyright notice, this
11+
list of conditions and the following disclaimer in the documentation and/or
12+
other materials provided with the distribution.
1413

1514
- Neither the name of Zend Technologies USA, Inc. nor the names of its
1615
contributors may be used to endorse or promote products derived from this

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# zend-form
22

33
[![Build Status](https://secure.travis-ci.org/zendframework/zend-form.svg?branch=master)](https://secure.travis-ci.org/zendframework/zend-form)
4-
[![Coverage Status](https://coveralls.io/repos/zendframework/zend-form/badge.svg?branch=master)](https://coveralls.io/r/zendframework/zend-form?branch=master)
4+
[![Coverage Status](https://coveralls.io/repos/github/zendframework/zend-form/badge.svg?branch=master)](https://coveralls.io/github/zendframework/zend-form?branch=master)
55

66
zend-form is intended primarily as a bridge between your domain models and
77
the View Layer. It composes a thin layer of objects representing form elements,

composer.json

Lines changed: 28 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
{
22
"name": "zendframework/zend-form",
3-
"description": " ",
3+
"description": "Validate and display simple and complex forms, casting forms to business objects and vice versa",
44
"license": "BSD-3-Clause",
55
"keywords": [
6-
"zf2",
6+
"zf",
7+
"zendframework",
78
"form"
89
],
9-
"homepage": "https://github.com/zendframework/zend-form",
10-
"autoload": {
11-
"psr-4": {
12-
"Zend\\Form\\": "src/"
13-
},
14-
"files": [
15-
"autoload/formElementManagerPolyfill.php"
16-
]
10+
"support": {
11+
"docs": "https://docs.zendframework.com/zend-form/",
12+
"issues": "https://github.com/zendframework/zend-form/issues",
13+
"source": "https://github.com/zendframework/zend-form",
14+
"rss": "https://github.com/zendframework/zend-form/releases.atom",
15+
"slack": "https://zendframework-slack.herokuapp.com",
16+
"forum": "https://discourse.zendframework.com/c/questions/components"
1717
},
1818
"require": {
19-
"php": "^7.0 || ^5.6",
19+
"php": "^5.6 || ^7.0",
2020
"zendframework/zend-inputfilter": "^2.6",
2121
"zendframework/zend-hydrator": "^1.1 || ^2.1",
2222
"zendframework/zend-stdlib": "^2.7 || ^3.0"
@@ -36,7 +36,7 @@
3636
"zendframework/zend-validator": "^2.6",
3737
"zendframework/zend-view": "^2.6.2",
3838
"zendframework/zendservice-recaptcha": "^3.0.0",
39-
"phpunit/phpunit": "^6.0.8 || ^5.7.15",
39+
"phpunit/phpunit": "^5.7.23 || ^6.5.3",
4040
"zendframework/zend-coding-standard": "~1.0.0"
4141
},
4242
"suggest": {
@@ -48,8 +48,22 @@
4848
"zendframework/zend-view": "^2.6.2, required for using the zend-form view helpers",
4949
"zendframework/zendservice-recaptcha": "in order to use the ReCaptcha form element"
5050
},
51-
"minimum-stability": "dev",
52-
"prefer-stable": true,
51+
"autoload": {
52+
"psr-4": {
53+
"Zend\\Form\\": "src/"
54+
},
55+
"files": [
56+
"autoload/formElementManagerPolyfill.php"
57+
]
58+
},
59+
"autoload-dev": {
60+
"psr-4": {
61+
"ZendTest\\Form\\": "test/"
62+
}
63+
},
64+
"config": {
65+
"sort-packages": true
66+
},
5367
"extra": {
5468
"branch-alias": {
5569
"dev-master": "2.10-dev",
@@ -60,14 +74,6 @@
6074
"config-provider": "Zend\\Form\\ConfigProvider"
6175
}
6276
},
63-
"autoload-dev": {
64-
"psr-4": {
65-
"ZendTest\\Form\\": "test/"
66-
}
67-
},
68-
"config": {
69-
"process-timeout": 0
70-
},
7177
"scripts": {
7278
"check": [
7379
"@cs-check",

0 commit comments

Comments
 (0)