forked from milesj/uploader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
30 lines (30 loc) · 918 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
{
"name": "mjohnson/uploader",
"type": "cakephp-plugin",
"description": "File uploader and validation plugin for CakePHP.",
"keywords": ["cakephp", "uploader", "plugin", "file", "validation", "attachment"],
"homepage": "http://milesj.me/code/cakephp/uploader",
"license": "MIT",
"authors": [
{
"name": "Miles Johnson",
"homepage": "http://milesj.me"
}
],
"require": {
"php": ">=5.3.3",
"ext-curl": "*",
"ext-mbstring": "*",
"ext-fileinfo": "*",
"composer/installers": "*",
"mjohnson/transit": "~1.6"
},
"suggest": {
"ext-gd": "Enable the GD library for image transforming",
"ext-exif": "Extract exif data from images",
"aws/aws-sdk-php": "~2.7"
},
"support": {
"source": "https://github.com/milesj/uploader"
}
}