-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
53 lines (53 loc) · 1.24 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
{
"name": "latrell/aliyun-mns-laravel",
"description": "阿里云消息服务在Laravel5中的Queue拓展。",
"keywords": [
"L5",
"Laravel 5",
"Laravel",
"Aliyun",
"MNS"
],
"homepage": "https://github.com/Latrell/AliyunMns",
"license": "MIT",
"authors": [
{
"name": "Latrell Chan",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "package",
"package": {
"name": "aliyun/mns",
"version": "1.2.2",
"dist": {
"url": "https://docs-aliyun.cn-hangzhou.oss.aliyun-inc.com/cn/mns/0.0.53/assets/sdks/aliyun-mns-php-sdk-1.2.2.zip",
"type": "zip"
}
}
}
],
"require": {
"php": ">=5.5.9",
"illuminate/support": "5.1.*|5.2.*",
"aliyun/mns": "*"
},
"autoload": {
"psr-0": {
"Latrell\\AliyunMns\\": "src/"
},
"classmap": [
"../../aliyun/mns/AliyunMNS",
"../../aliyun/mns/GuzzleHttp",
"../../aliyun/mns/Psr"
],
"files": [
"../../aliyun/mns/GuzzleHttp/functions.php",
"../../aliyun/mns/GuzzleHttp/Psr7/functions.php",
"../../aliyun/mns/GuzzleHttp/Promise/functions.php"
]
},
"minimum-stability": "stable"
}