-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
69 lines (69 loc) · 1.98 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "simialbi/yii2-elfinder",
"description": "Elfinder implementation for yii2 framework",
"keywords": [
"yii2",
"elfinder",
"file browser"
],
"type": "yii2-extension",
"license": "MIT",
"support": {
"issues": "https://github.com/simialbi/yii2-elfinder/issues",
"source": "https://github.com/simialbi/yii2-elfinder"
},
"authors": [
{
"name": "Simon Karlen",
"email": "[email protected]"
}
],
"prefer-stable": true,
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"require": {
"php": ">=8.0",
"ext-curl": "*",
"ext-gd": "*",
"yiisoft/yii2": "~2.0",
"yiisoft/yii2-jui": "^2.0.0",
"studio-42/elfinder": "~2.1",
"rmrevin/yii2-fontawesome": "~3.0",
"simialbi/yii2-simialbi-base": ">=0.10.2 <1.0 | ^1.0.0"
},
"require-dev": {
"yiisoft/yii2-coding-standards": "~2.0",
"phpunit/phpunit": "^10.5.0",
"yiisoft/yii2-bootstrap": "^2.0.0",
"google/apiclient": "^2.17.0"
},
"suggest": {
"ext-fileinfo": "To use mime content type detection in behaviors",
"ext-exif": "To use image rotate behavior",
"google/apiclient": "To use with VolumeDriver GoogleDrive",
"simialbi/yii2-widget-crop": "Add an image cropper widget to ElFinderInput",
"yiisoft/yii2-bootstrap": "To use with bootstrap 3",
"yiisoft/yii2-bootstrap4": "To use with bootstrap 4",
"yiisoft/yii2-bootstrap5": "To use with bootstrap 5"
},
"config": {
"process-timeout": 1800,
"allow-plugins": {
"yiisoft/yii2-composer": true
}
},
"autoload": {
"psr-4": {
"simialbi\\yii2\\elfinder\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"yiiunit\\extensions\\elfinder\\": "tests"
}
}
}