-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathcomposer.json
55 lines (55 loc) · 1.82 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
{
"name": "alphasnow/aliyun-oss-laravel",
"description": "alibaba cloud object storage service for laravel",
"keywords": ["aliyun", "oss", "laravel", "filesystems", "storage"],
"homepage": "https://alphasnow.github.io/aliyun-oss-laravel/",
"license": "MIT",
"authors": [
{
"name": "alphasnow",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0.2",
"alphasnow/aliyun-oss-flysystem": "^3.4"
},
"require-dev": {
"mockery/mockery": "^1.5",
"phpunit/phpunit": "^9.5",
"friendsofphp/php-cs-fixer": "^3.12",
"phpstan/phpstan": "^1.9",
"orchestra/testbench": "^7.13",
"php-coveralls/php-coveralls": "*"
},
"autoload": {
"psr-4": {
"AlphaSnow\\LaravelFilesystem\\Aliyun\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AlphaSnow\\LaravelFilesystem\\Aliyun\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"AlphaSnow\\LaravelFilesystem\\Aliyun\\AliyunServiceProvider"
]
}
},
"scripts": {
"phpstan": "vendor/bin/phpstan analyse",
"check-style": "vendor/bin/php-cs-fixer fix --using-cache=no --diff --config=.php-cs-fixer.php --dry-run --ansi",
"fix-style": "vendor/bin/php-cs-fixer fix --using-cache=no --config=.php-cs-fixer.php --ansi",
"test": "vendor/bin/phpunit --colors=always --testdox --configuration phpunit.xml.dist",
"coveralls": "vendor/bin/php-coveralls"
},
"scripts-descriptions": {
"phpstan": "Run static analysis",
"check-style": "Run style checks (only dry run - no fixing!).",
"fix-style": "Run style checks and fix violations.",
"test": "Run all tests."
}
}