-
Notifications
You must be signed in to change notification settings - Fork 57
/
composer.json
55 lines (55 loc) · 1.2 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
46
47
48
49
50
51
52
53
54
55
{
"name": "nemmo/yii2-attachments",
"description": "Extension for file uploading and attaching to the models",
"type": "yii2-extension",
"keywords": [
"yii2",
"extension",
"attachment",
"file",
"upload"
],
"license": "BSD-4-Clause",
"homepage": "https://github.com/Nemmo/yii2-attachments",
"authors": [
{
"name": "Alimzhan Abuov aka Nemmo",
"email": "[email protected]",
"homepage": "http://alimzhan.kz",
"role": "Developer"
}
],
"require": {
"php": ">=5.4.0",
"yiisoft/yii2": "~2.0.0",
"kartik-v/yii2-widget-fileinput": "~1.1.1",
"himiklab/yii2-colorbox-widget": "*"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"phpunit/dbunit": "~1.0"
},
"autoload": {
"psr-4": {
"nemmo\\attachments\\": "src"
}
},
"extra": {
"asset-installer-paths": {
"npm-asset-library": "vendor/npm",
"bower-asset-library": "vendor/bower"
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"config": {
"process-timeout": 1800,
"fxp-asset": {
"enabled": false
}
}
}