forked from matriphe/laravel-imageupload
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 905 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
38
{
"name": "matriphe/imageupload",
"description": "Upload image using Laravel's build in function and resize it using Imagine library automatically.",
"keywords": [
"laravel", "image", "upload", "imagine"
],
"type": "library",
"license":"MIT",
"authors": [
{
"name": "Muhammad Zamroni",
"email": "[email protected]",
"homepage": "http://matriphe.com"
}
],
"require": {
"php": ">=5.5.9",
"illuminate/support": "^5.0",
"imagine/imagine": "0.*"
},
"require-dev": {
"phpunit/phpunit": "4.*",
"mockery/mockery": "^0.9.4"
},
"suggest": {
"league/flysystem-aws-s3-v2": "Amazon S3 storage driver",
"league/flysystem-rackspace": "Rackspace Cloud Storage driver"
},
"autoload": {
"classmap": [
"src/migrations"
],
"psr-0": {
"Matriphe\\Imageupload\\": "src/"
}
},
"minimum-stability": "stable"
}