-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
31 lines (31 loc) · 882 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
{
"name": "artur-gajewski/file-bank",
"description": "A Zend Framework 2 module for uploading files to a File Bank along with metadata, keywords and status information and a controller to offer saved files for download.",
"type": "module",
"keywords": [
"zf2",
"filebank"
],
"homepage": "https://github.com/artur-gajewski/FileBank",
"authors": [
{
"name": "Artur Gajewski",
"email": "[email protected]",
"homepage": "https://github.com/artur-gajewski"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=5.3.3",
"zendframework/zendframework": "2.*",
"doctrine/doctrine-orm-module": "~0.7"
},
"autoload": {
"psr-0": {
"FileLib": "src/"
},
"classmap": [
"./Module.php"
]
}
}