-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
72 lines (72 loc) · 1.89 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "mvccore/ext-form",
"type": "library",
"description": "MvcCore - Extension - Form - form extension with base classes to create and render web forms with HTML5 controls, to handle and validate submited user data, to manage forms sessions for default values, to manage user input errors and to extend and develop custom fields and field groups.",
"keywords": [
"mvc",
"mvccore",
"framework",
"extension",
"plugin",
"plug-in",
"ext",
"mvccore",
"form",
"forms",
"webform",
"html5",
"dynamic",
"field",
"fields",
"input",
"inputs",
"text",
"number",
"select",
"checkbox",
"radio",
"groups",
"reset",
"button",
"image",
"date",
"time",
"week",
"month",
"datetime",
"date",
"range",
"file",
"color",
"tel",
"url",
"search",
"email",
"textarea"
],
"license": ["BSD-3-Clause"],
"authors": [{
"name": "Tom Flidr",
"homepage": "https://github.com/tomFlidr"
}],
"require": {
"php": ">=5.4.0",
"mvccore/mvccore": "^5.3"
},
"suggest": {
"mvccore/ext-form-field-text": "MvcCore form extension with input field types text, email, password, search, tel, url and textarea field.",
"mvccore/ext-form-field-numeric": "MvcCore form extension with input field types number and range.",
"mvccore/ext-form-field-selection": "MvcCore form extension with fields select, country select, checkbox(es) and radios.",
"mvccore/ext-form-field-date": "MvcCore form extension with input field types date, datetime, time, week and month.",
"mvccore/ext-form-field-button": "MvcCore form extension with button fields and input submit fields.",
"mvccore/ext-form-field-special": "MvcCore form extension with input type file and color.",
"mvccore/ext-form-validator-special": "MvcCore form extension with special text and numeric validators."
},
"autoload": {
"classmap": [
"src/"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}