forked from BKWLD/croppa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 871 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
39
40
{
"name": "ipridham/croppa",
"description": "Image thumbnail creation through specially formatted URLs for Laravel",
"authors": [{ "name": "Robert Reinhard" } ],
"license": "MIT",
"require": {
"php": ">=5.5.0",
"illuminate/console": "4 - 5",
"illuminate/support": "4 - 5",
"illuminate/routing": "4 - 5",
"league/flysystem": "~1.0",
"symfony/http-foundation": "2 - 4",
"symfony/http-kernel": "2 - 4",
"weotch/PHPThumb": "^1.0.5"
},
"require-dev": {
"phpunit/phpunit": "4 - 5",
"mockery/mockery": "~0.9"
},
"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"
}
}
}
}