-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
60 lines (60 loc) · 1.92 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
56
57
58
59
60
{
"name": "alphasnow/aliyun-oss-appserver",
"description": "upload data to OSS through web applications",
"keywords": ["aliyun", "oss", "appserver", "laravel"],
"license": "MIT",
"homepage": "https://alphasnow.github.io/aliyun-oss-appserver/",
"support": {
"issues": "https://github.com/alphasnow/aliyun-oss-appserver/issues",
"source": "https://github.com/alphasnow/aliyun-oss-appserver"
},
"authors": [
{
"name": "alphasnow",
"email": "wind91@foxmail.com"
}
],
"require": {
"php": "^7.2.5|^8.0",
"ext-json": "*",
"ext-curl": "*",
"ext-openssl": "*"
},
"require-dev": {
"mockery/mockery": "^1.3",
"phpunit/phpunit": "^8.5.23",
"friendsofphp/php-cs-fixer": "^3.4",
"phpstan/phpstan": "^1.8",
"orchestra/testbench": "^4.18"
},
"autoload": {
"psr-4": {
"AlphaSnow\\OSS\\AppServer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AlphaSnow\\OSS\\AppServer\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"AlphaSnow\\OSS\\AppServer\\Laravel\\ServiceProvider"
]
}
},
"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",
"test-report": "vendor/bin/phpunit --coverage-html=reports/"
},
"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."
}
}