-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
45 lines (43 loc) · 1.13 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
{
"name": "stanislav-web/phalcon-uploader",
"description": "Phalcon files uploader. Handling and downloading files for Phalcon projects. Allowed multiple files download, filters etc...",
"type": "library",
"keywords" : [
"phalcon",
"phalcon uploader",
"phalcon upload",
"phalcon upload files",
"uploader"
],
"support": {
"issues": "https://github.com/stanislav-web/phalcon-uploader/issues"
},
"minimum-stability": "dev",
"homepage" : "https://github.com/stanislav-web/phalcon-uploader",
"license" : "MIT",
"authors" : [{
"name": "Stanislav WEB",
"email": "[email protected]",
"homepage": "http://reds.com",
"role": "Developer"
}],
"require" : {
"php" : ">=5.4.0"
},
"autoload": {
"psr-4": {
"Uploader\\": "src/Uploader"
},
"classmap": ["phpunit/src/Uploader"]
},
"extra": {
"branch-alias": {
"dev-master": "1.*-dev"
}
},
"autoload-dev": {
"psr-4": {
"Test\\Uploader\\": "phpunit/src/Uploader"
}
}
}