forked from larvatecn/flysystem-oss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
31 lines (31 loc) · 911 Bytes
/
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
{
"name": "larva/flysystem-oss",
"description": "Flysystem adapter for the Aliyun OSS storage.",
"require": {
"league/flysystem": "^2.0|^3.0",
"league/mime-type-detection": "^1.0.0",
"aliyuncs/oss-sdk-php": "^2.4"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.6"
},
"autoload": {
"psr-4": {
"Larva\\Flysystem\\Oss\\": "src"
}
},
"license": "MIT",
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"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."
}
}