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