forked from milesj/transit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 934 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
{
"name": "mjohnson/transit",
"type": "library",
"description": "A file uploader with support for validation, image transformation and remote transportation.",
"keywords": [
"transit", "file", "uploader", "validator", "importer", "transformer", "transporter",
"image", "audio", "video", "text", "application", "archive", "s3", "glacier", "exif"
],
"homepage": "http://milesj.me/code/php/transit",
"license": "MIT",
"authors": [
{
"name": "Miles Johnson",
"homepage": "http://milesj.me"
}
],
"require": {
"php": ">=5.3.3",
"ext-curl": "*",
"ext-mbstring": "*",
"ext-fileinfo": "*"
},
"require-dev": {
"ext-exif": "*",
"aws/aws-sdk-php": "~2.2"
},
"suggest": {
"ext-exif": "Extract exif data from images",
"aws/aws-sdk-php": "~2.2"
},
"support": {
"source": "https://github.com/milesj/transit"
},
"autoload": {
"psr-0": { "Transit": "src/" }
}
}