forked from BKWLD/croppa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 1.01 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
46
47
48
{
"name": "bkwld/croppa",
"description": "Image thumbnail creation through specially formatted URLs for Laravel",
"authors": [
{
"name": "Robert Reinhard"
}
],
"license": "MIT",
"require": {
"php": "^7.2.5",
"illuminate/console": "4 - 8",
"illuminate/support": "4 - 8",
"illuminate/routing": "4 - 8",
"league/flysystem": "~1.0",
"symfony/http-foundation": "2 - 5",
"symfony/http-kernel": "2 - 5",
"weotch/phpthumb": "^1.0.5",
"ext-gd": "*"
},
"require-dev": {
"phpunit/phpunit": "4 - 5",
"mockery/mockery": "~0.9"
},
"suggest": {
"ext-exif": "Required if you want to have Croppa auto-rotate images from devices like mobile phones based on exif meta data."
},
"conflict": {
"league/flysystem-cached-adapter": "<1.0.2"
},
"autoload": {
"psr-0": {
"Bkwld\\Croppa": "src/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"laravel": {
"providers": [
"Bkwld\\Croppa\\ServiceProvider"
],
"aliases": {
"Croppa": "Bkwld\\Croppa\\Facade"
}
}
}
}