-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
74 lines (74 loc) · 1.69 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
70
71
72
73
74
{
"name": "diecoding/yii2-flysystem",
"description": "The League Flysystem for local and remote filesystems library for Yii2",
"type": "library",
"keywords": [
"yii2",
"extension",
"component",
"flysystem",
"filesystem",
"files",
"aws",
"s3",
"ftp",
"sftp"
],
"homepage": "https://github.com/sugeng-sulistiyawan/yii2-flysystem",
"license": "MIT",
"authors": [
{
"name": "Sugeng Sulistiyawan",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/sugeng-sulistiyawan/yii2-flysystem/issues",
"source": "https://github.com/sugeng-sulistiyawan/yii2-flysystem"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/sugeng-sulistiyawan"
}
],
"require": {
"php": ">=8.0",
"league/flysystem": "^3.0",
"league/flysystem-path-prefixing": "^3.0",
"yiisoft/yii2": "~2.0"
},
"require-dev": {
"league/flysystem-async-aws-s3": "^3.0",
"league/flysystem-aws-s3-v3": "^3.0",
"league/flysystem-ftp": "^3.0",
"league/flysystem-google-cloud-storage": "^3.0",
"league/flysystem-sftp-v3": "^3.0",
"league/flysystem-webdav": "^3.0",
"league/flysystem-ziparchive": "^3.0",
"masbug/flysystem-google-drive-ext": "^2.0",
"phpunit/phpunit": "~9.5.0"
},
"autoload": {
"psr-4": {
"diecoding\\flysystem\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"diecoding\\flysystem\\tests\\": "tests/"
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true
},
"sort-packages": true
}
}