-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (45 loc) · 1.23 KB
/
Copy pathcomposer.json
File metadata and controls
45 lines (45 loc) · 1.23 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
{
"name": "hughcube/composer-alioss-plugin",
"description": "composer proxy plugin",
"type": "composer-plugin",
"license": "MIT",
"authors": [
{
"name": "hugh.li",
"email": "hugh.li@foxmail.com"
}
],
"require": {
"php": ">=7.0",
"composer-plugin-api": "^1.0|^2.0",
"hughcube/purl": "*",
"aliyuncs/oss-sdk-php": "^2.4"
},
"require-dev": {
"composer/composer": "^2.0|^1.0",
"phpunit/phpunit": "^9.0|^8.0|^7.0|^6.0",
"squizlabs/php_codesniffer": "^3",
"phpstan/phpstan": "^0.12.0"
},
"autoload": {
"psr-4": {
"HughCube\\Composer\\AliOSSPlugin\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"HughCube\\Composer\\AliOSSPlugin\\Tests\\": "tests"
}
},
"extra": {
"class": "HughCube\\Composer\\AliOSSPlugin\\AliOSSPlugin"
},
"scripts": {
"test": "phpunit --verbose --coverage-clover=coverage.clover",
"phpstan": "phpstan analyse -vvv",
"check-style": "phpcs -p --standard=PSR2 src/ -v",
"fix-style": "phpcbf -p --standard=PSR2 src/ -v"
},
"minimum-stability": "dev",
"prefer-stable": true
}