-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
41 lines (41 loc) · 1006 Bytes
/
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
{
"name": "wushunyi/aliyun-sdk-mns",
"description": "Aliyun MNS PHP SDK 阿里云官方 MNS composer包",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Wu ShunYi",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=5.3.0",
"guzzlehttp/guzzle": "^6.3",
"ext-openssl": "*",
"ext-dom": "*",
"ext-simplexml": "*"
},
"autoload": {
"psr-4": {
"AliyunMNS\\": "AliyunMNS/"
}
},
"autoload-dev": {
"psr-4": {
"AliyunMNS\\Tests\\": "tests/",
"AliyunMNS\\Samples\\": "Samples/"
}
},"extra": {
"branch-alias": {
"dev-master": "master-dev"
}
},
"suggest": {
"ext-openssl": "Allows working with https",
"ext-curl": "To send requests using cURL",
"ext-json": "Parse json"
}
}