This repository has been archived by the owner on Sep 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
64 lines (64 loc) · 1.53 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
64
{
"name": "dew-serverless/mns",
"description": "Communicate with Alibaba Cloud Message Service(MNS).",
"keywords": [
"mns",
"php",
"aliyun",
"alibabacloud",
"acs"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Li Zhineng",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"guzzlehttp/guzzle": "^7.8"
},
"require-dev": {
"pestphp/pest": "^2.23",
"mockery/mockery": "^1.6",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-strict-rules": "^1.5",
"ergebnis/phpstan-rules": "^2.1",
"rector/rector": "^0.18.6",
"laravel/pint": "^1.13"
},
"autoload": {
"psr-4": {
"Dew\\Mns\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Dew\\Mns\\Tests\\": "tests/"
}
},
"scripts": {
"refactor": "rector",
"format": "pint",
"test:refactor": "rector --dry-run",
"test:style": "pint --test",
"test:type": "phpstan analyse",
"test:pest": "pest --exclude-group=integration",
"test:integration": "pest --group=integration",
"test": [
"@test:refactor",
"@test:style",
"@test:type",
"@test:pest",
"@test:integration"
]
},
"minimum-stability": "stable",
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}