This repository has been archived by the owner on Sep 15, 2024. It is now read-only.
generated from lizhineng/skeleton-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
63 lines (63 loc) · 1.49 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
61
62
63
{
"name": "dew-serverless/tablestore-php",
"type": "library",
"keywords": [
"tablestore",
"ots",
"alibabacloud",
"aliyun",
"acs"
],
"license": "MIT",
"authors": [
{
"name": "Li Zhineng",
"email": "im@zhineng.li"
}
],
"require": {
"php": "^8.0",
"google/protobuf": "^3.25",
"guzzlehttp/guzzle": "^7.8"
},
"require-dev": {
"pestphp/pest": "^1.23|^2.0",
"laravel/pint": "^1.0",
"rector/rector": "^0.18.7",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-strict-rules": "^1.5",
"mockery/mockery": "^1.6"
},
"autoload": {
"psr-4": {
"Dew\\Tablestore\\": "src",
"Protos\\": "src/Protos"
}
},
"autoload-dev": {
"psr-4": {
"Dew\\Tablestore\\Tests\\": "tests"
}
},
"scripts": {
"format": "pint",
"refactor": "rector",
"test:style": "pint --test",
"test:refactor": "rector --dry-run",
"test:static": "phpstan analyse",
"test:integration": "pest --group=integration",
"test:unit": "pest --exclude-group=integration",
"test": [
"@test:style",
"@test:refactor",
"@test:static",
"@test:unit",
"@test:integration"
]
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}