-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
64 lines (58 loc) · 1.64 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
{
"name": "dicr/yii2-file",
"type": "yii2-extension",
"license": "GPL-3.0-or-later",
"description": "Filesystem components for Yii2",
"keywords": ["dicr", "yii2", "file", "store"],
"homepage": "https://gitlab.com/dicr/yii2-file",
"authors": [
{
"name": "Igor Tarasov",
"email": "[email protected]",
"homepage": "https://dicr.org",
"role": "developer"
}
],
"support": {
"source": "https://gitlab.com/dicr/yii2-file.git"
},
"autoload": {
"psr-4": {
"dicr\\file\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"dicr\\tests\\": "tests/"
}
},
"extra": {
"bootstrap": "dicr\\file\\Bootstrap"
},
"require": {
"php": "~8.0",
"ext-fileinfo": "*",
"ext-ftp": "*",
"ext-iconv": "*",
"ext-imagick": "*",
"ext-mbstring": "*",
"yiisoft/yii2": "~2.0",
"dicr/yii2-asset": "~3.0"
},
"require-dev": {
"phpunit/phpunit": "~9.5",
"roave/security-advisories": "dev-latest",
"league/flysystem": "~3.0"
},
"suggest": {
"ext-ssh2": "for LocalFileStore with ssh2.sftp:// wrapper",
"ext-ftp": "for LocalFileStore with ftp:// wrapper",
"ext-zip": "for LocalFileStore with zip://wrapper",
"ext-imagick": "for creating thumbnails",
"league/flysystem": "for FlysystemFileStore"
},
"repositories": [
{"type": "composer", "url": "https://asset-packagist.org"},
{"type": "gitlab", "url": "https://gitlab.com/dicr/yii2-asset.git"}
]
}