-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
49 lines (48 loc) · 1.38 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
{
"name": "depage/htmlform",
"description": "depage-forms is PHP library for HTML form generation with focus on usability. By abstracting HTML, browser flaws (duplicate form submissions) and form validation, it provides a comfortable way to obtain reliable and validated data from users.",
"type": "library",
"keywords": [
"html",
"form",
"forms",
"validation"
],
"require": {
"php": " >= 5.3"
},
"require-dev": {
"phpunit/phpunit": "^6.5"
},
"suggest": {
"gregwar/captcha": "Needed to generate the Captcha element"
},
"autoload": {
"psr-4": { "Depage\\HtmlForm\\": "" }
},
"homepage": "http://docs.depage.net/depage-forms/",
"support": {
"email": "[email protected]",
"source": "https://github.com/depage/depage-forms",
"issues": "https://github.com/depage/depage-forms/issues"
},
"time": "2018-01-20",
"license": [
"MIT",
"GPL-2.0-or-later"
],
"authors": [
{
"name": "Frank Hellenkamp",
"homepage": "http://depage.net",
"role": "Developer"
},{
"name": "Sebastian Reinhold",
"role": "Developer"
},{
"name": "Ben Wallis",
"homepage": "http://www.benedict-wallis.com/",
"role": "Developer"
}
]
}