-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
46 lines (46 loc) · 1.23 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
{
"name": "larva/laravel-flysystem-cos",
"description": "This is a Flysystem adapter for the Tencent COS.",
"keywords": [
"flysystem",
"tencent",
"cos",
"larva"
],
"type": "library",
"license": "MIT",
"require": {
"php": "^8.0",
"laravel/framework": "^9.0|^10.0",
"league/flysystem": "^3.0",
"larva/flysystem-cos": "^1.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.6"
},
"autoload": {
"psr-4": {
"Larva\\Flysystem\\Tencent\\": "src"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
},
"laravel": {
"providers": [
"Larva\\Flysystem\\Tencent\\ObjectStorageServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"check-style": "./vendor/bin/php-cs-fixer fix --using-cache=no --diff --dry-run --ansi",
"fix-style": "./vendor/bin/php-cs-fixer fix --using-cache=no --ansi"
},
"scripts-descriptions": {
"check-style": "Run style checks (only dry run - no fixing!).",
"fix-style": "Run style checks and fix violations."
}
}