forked from ipublikuj-archive/form-datetime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (36 loc) · 998 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
41
{
"name" : "metisfw/form-datetime",
"type" : "library",
"description" : "Forms control for adding date, date&time and time fields for Nette Framework",
"keywords" : ["nette", "form", "date", "datepicker", "time", "timepicker"],
"homepage" : "https://github.com/MEtisFw/form-datetime",
"license" : ["BSD-3-Clause", "GPL-2.0", "GPL-3.0"],
"authors": [
{
"name": "GrowJOB s.r.o",
"email": "dev@growjob.com"
}
],
"support":{
"email": "dev@growjob.com",
"issues": "https://github.com/MetisFW/form-datetime/issues"
},
"require": {
"php" : ">=7.0",
"nette/application" : "~2.4",
"nette/di" : "~2.4",
"nette/forms" : "~2.4",
"nette/utils" : "~2.4",
"latte/latte" : "~2.4"
},
"require-dev": {
"nette/tester" : "~2.0",
"tracy/tracy" : "~2.4",
"janmarek/mockista" : "@dev"
},
"autoload": {
"psr-0": {
"MetisFW\\FormDateTime\\": "src/"
}
}
}