forked from hyperf/filesystem
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.5 KB
/
Copy pathcomposer.json
File metadata and controls
50 lines (50 loc) · 1.5 KB
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
{
"name": "hyperf/filesystem",
"type": "library",
"license": "MIT",
"keywords": [
"php",
"hyperf"
],
"description": "flysystem integration for hyperf",
"require": {
"php": ">=8.0",
"hyperf/di": "~3.0.0",
"league/flysystem": "^1.0|^2.0|^3.0"
},
"suggest": {
"xxtime/flysystem-aliyun-oss": "Required to use aliyun oss adapter when use `league/flysystem` v1.0",
"hyperf/flysystem-oss": "Required to use aliyun oss adapter when use `league/flysystem` v2.0",
"league/flysystem-memory": "required to use memory adapter",
"hyperf/guzzle": "required to use s3 adapter",
"league/flysystem-aws-s3-v3": "required to use s3 adapter",
"overtrue/flysystem-qiniu": "Required to use qiniu adapter (^1.0|^2.0)",
"overtrue/flysystem-cos": "Required to use cos adapter (^3.0|^4.0)"
},
"autoload": {
"psr-4": {
"Hyperf\\Filesystem\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"HyperfTest\\Filesystem\\": "tests"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"test": "co-phpunit -c phpunit.xml --colors=always",
"analyse": "phpstan analyse --memory-limit 300M -l 0 ./src",
"cs-fix": "php-cs-fixer fix $1"
},
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
},
"hyperf": {
"config": "Hyperf\\Filesystem\\ConfigProvider"
}
}
}