forked from nextras/forms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 826 Bytes
/
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
{
"name": "nextras/forms",
"type": "library",
"description": "Extra form components for Nette Framework.",
"keywords": ["nette", "form"],
"license": ["BSD-3-Clause", "GPL-2.0", "GPL-3.0"],
"authors": [
{
"name": "David Grudl",
"homepage": "http://davidgrudl.com"
},
{
"name": "Jan Škrášek",
"homepage": "http://jan.skrasek.com"
},
{
"name": "Nextras Community",
"homepage": "https://github.com/nextras/forms/graphs/contributors"
}
],
"require": {
"php": ">=5.4",
"nette/application": "~2.2",
"nette/component-model": "~2.2",
"nette/forms": "~2.2",
"nette/utils": "~2.2"
},
"require-dev": {
"latte/latte": "~2.2",
"nette/tester": "~1.4"
},
"extra": {
"branch-alias": {
"dev-master": "1.6-dev"
}
},
"autoload": {
"psr-4": { "Nextras\\Forms\\": "src/" }
}
}