-
Notifications
You must be signed in to change notification settings - Fork 18
/
composer.json
43 lines (42 loc) · 1.25 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
{
"name": "pear/html_quickform2",
"description": "Provides methods to create, validate and render HTML forms in PHP.",
"type": "library",
"keywords": ["forms", "validation", "javascript", "wizard", "pear", "quickform"],
"homepage": "https://pear.php.net/package/HTML_QuickForm2/",
"license": "BSD-3-Clause",
"authors": [
{
"email": "[email protected]",
"name": "Alexey Borzov",
"role": "Lead"
},
{
"email": "[email protected]",
"name": "Bertrand Mansion",
"role": "Lead"
}
],
"support": {
"issues": "https://github.com/pear/HTML_QuickForm2/issues",
"source": "https://github.com/pear/HTML_QuickForm2",
"docs": "https://pear.php.net/manual/en/package.html.html-quickform2.php"
},
"require": {
"php": ">=5.6.0",
"pear/pear_exception": "^1.0",
"pear/html_common2": "^2.3.1"
},
"require-dev": {
"yoast/phpunit-polyfills": "^1.0"
},
"autoload": {
"psr-0": {
"HTML_QuickForm2": ""
},
"exclude-from-classmap": ["docs/"]
},
"autoload-dev": {
"classmap": ["tests/"]
}
}