-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
53 lines (53 loc) · 1.3 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
{
"name" : "mouf/html.widgets.jqueryfileupload",
"description" : "This package contains an upload widget based on the 'jQuery file upload' plugin. This allows easy uploading of files.",
"keywords" : [
"mouf",
"html",
"widget",
"file",
"uploader",
"jqueryFileUpload"
],
"homepage" : "http://mouf-php.com/packages/mouf/html.widgets.jqueryfileupload",
"type" : "mouf-library",
"license" : "MIT",
"authors" : [{
"name" : "David Négrier",
"email" : "[email protected]",
"homepage" : "http://mouf-php.com"
}
],
"require" : {
"php" : ">=5.3.0",
"mouf/javascript.jquery.jquery-file-upload" : "*",
"mouf/html.htmlelement" : "~2.0",
"mouf/utils.session.session-manager" : "~2.0 || ~3.0",
"mouf/utils.common.getvars" : "~2.0",
"mouf/html.renderer" : "~1.0",
"symfony/filesystem" : "~2.3",
"mouf/utils.graphics.mouf-image" : "~2.0"
},
"autoload" : {
"psr-4" : {
"Mouf\\Html\\Widgets\\JqueryFileUpload\\" : "src/Mouf/Html/Widgets/JqueryFileUpload"
}
},
"extra" : {
"mouf" : {
"doc" : [{
"title" : "Install",
"url" : "doc/install.md"
}, {
"title" : "Tutorial",
"url" : "doc/tutorial.md"
}
],
"install" : [{
"class" : "Mouf\\Html\\Widgets\\JqueryFileUpload\\JqueryFileUploadInstaller",
"type" : "class"
}
]
}
}
}