forked from folkloreinc/laravel-image-legacy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1.22 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
{
"name": "folklore/image",
"description": "Image manipulation library for Laravel 4 based on Imagine and inspired by Croppa for easy url based manipulation",
"keywords": ["laravel","image","imagick","gd","imagine","watermark","gmagick","thumbnail"],
"homepage": "http://github.com/Folkloreatelier/laravel-image",
"license": "MIT",
"authors": [
{
"name": "Folklore",
"email": "[email protected]",
"homepage": "http://atelierfolklore.ca"
},
{
"name": "David Mongeau-Petitpas",
"email": "[email protected]",
"homepage": "http://mongo.ca",
"role": "Developer"
}
],
"require": {
"php": ">=5.4.0",
"illuminate/support": "~5.2",
"imagine/imagine": "0.6.*"
},
"require-dev": {
"orchestra/testbench": "~3.2"
},
"repositories": [
{
"type": "vcs",
"url": "git://github.com/orchestral/phpseclib.git"
}
],
"autoload": {
"classmap": [
"tests/ImageTestCase.php"
],
"psr-0": {
"Folklore\\Image\\": "src/"
}
},
"minimum-stability": "stable"
}