-
Notifications
You must be signed in to change notification settings - Fork 56
/
composer.json
41 lines (41 loc) · 1.16 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
{
"name": "mohorev/yii2-upload-behavior",
"description": "Upload behavior for Yii 2",
"keywords": ["yii2", "extension", "behavior", "file", "image", "upload", "resize", "thumb"],
"homepage": "https://github.com/mohorev/yii2-upload-behavior",
"type": "yii2-extension",
"license": "BSD-3-Clause",
"support": {
"issues": "https://github.com/mohorev/yii2-upload-behavior/issues?state=open",
"source": "https://github.com/mohorev/yii2-upload-behavior"
},
"authors": [
{
"name": "Alexander Mohorev",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"require": {
"php": ">=5.6.0",
"yiisoft/yii2": "~2.0.0"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"phpunit/dbunit": "~1.0",
"yiisoft/yii2-imagine": "^2.1"
},
"suggest": {
"yiisoft/yii2-imagine": "Required to use thumbnails processing with UploadImageBehavior"
},
"autoload": {
"psr-4": {
"mohorev\\file\\": "src"
}
}
}