-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
44 lines (44 loc) · 1.14 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
{
"name": "freyo/laravel-queue-rocketmq",
"description": "Queue Adapter for AlibabaMQ(Apache RocketMQ) SDK",
"keywords": ["laravel-queue", "rocketmq", "aliyun", "alibabamq"],
"require": {
"php": ">=5.6.4",
"illuminate/queue": "5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|5.8.*",
"ext-json": "*",
"ext-curl": "*",
"aliyunmq/mq-http-sdk": "^1.0",
"guzzlehttp/guzzle": "^6.0.0"
},
"require-dev": {
"php": "^7.0",
"phpunit/phpunit": ">=6.0.0",
"vlucas/phpdotenv": "^3.3",
"mockery/mockery": "^1.2.3"
},
"autoload": {
"psr-4": {
"Freyo\\LaravelQueueRocketMQ\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Freyo\\LaravelQueueRocketMQ\\Tests\\": "tests"
}
},
"license": "MIT",
"authors": [
{
"name": "freyo",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"extra": {
"laravel": {
"providers": [
"Freyo\\LaravelQueueRocketMQ\\LaravelQueueRocketMQServiceProvider"
]
}
}
}