forked from mohorev/yii2-upload-behavior
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.25 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
{
"name": "maxodrom/yii2-upload-behavior",
"description": "Upload behavior for Yii 2",
"keywords": ["yii2", "extension", "behavior", "file", "image", "upload", "resize", "thumb"],
"homepage": "https://github.com/maxodrom/yii2-upload-behavior",
"type": "yii2-extension",
"license": "BSD-3-Clause",
"support": {
"issues": "https://github.com/maxodrom/yii2-upload-behavior/issues?state=open",
"source": "https://github.com/maxodrom/yii2-upload-behavior"
},
"authors": [
{
"name": "Alexander Mohorev",
"email": "dev.mohorev@gmail.com"
},
{
"name": "Max Alexandrov",
"email": "max@7u3.ru"
}
],
"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"
}
}
}