forked from yii-dream-team/yii2-upload-behavior
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
49 lines (49 loc) · 953 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
41
42
43
44
45
46
47
48
49
{
"name": "bajadev/yii2-upload-behavior",
"type": "yii2-extension",
"description": "Yii2 file/image upload behavior for ActiveRecord",
"keywords": [
"file",
"image",
"upload",
"behavior",
"resize",
"thumb"
],
"license": "MIT",
"homepage": "http://bajadev.hu",
"authors": [
{
"name": "Bajadev",
"email": "[email protected]",
"homepage": "http://bajadev.hu",
"role": "Developer"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=5.4.0",
"yiisoft/yii2": "*",
"yiisoft/yii2-imagine": "2.3"
},
"repositories": [
{
"type": "git",
"url": "https://github.com/Bajadev/yii2-upload-behavior"
},
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"autoload": {
"psr-4": {
"bajadev\\upload\\": "./src"
}
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true
}
}
}