forked from vyuldashev/laravel-queue-rabbitmq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
58 lines (58 loc) · 1.5 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
{
"name": "vladimir-yuldashev/laravel-queue-rabbitmq",
"description": "RabbitMQ driver for Laravel Queue. Supports Laravel Horizon.",
"license": "MIT",
"authors": [
{
"name": "Vladimir Yuldashev",
"email": "misterio92@gmail.com"
}
],
"require": {
"php": "^8.0",
"ext-json": "*",
"illuminate/queue": "^9.0",
"php-amqplib/php-amqplib": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^9.3",
"mockery/mockery": "^1.0",
"laravel/horizon": "^5.0",
"friendsofphp/php-cs-fixer": "^3.6",
"orchestra/testbench": "^7.0"
},
"autoload": {
"psr-4": {
"VladimirYuldashev\\LaravelQueueRabbitMQ\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"VladimirYuldashev\\LaravelQueueRabbitMQ\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "11.0-dev"
},
"laravel": {
"providers": [
"VladimirYuldashev\\LaravelQueueRabbitMQ\\LaravelQueueRabbitMQServiceProvider"
]
}
},
"suggest": {
"ext-pcntl": "Required to use all features of the queue consumer."
},
"scripts": {
"test": [
"@test:style",
"@test:unit"
],
"test:style": "@php vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php --allow-risky=yes --dry-run --diff --verbose",
"test:unit": "@php vendor/bin/phpunit",
"fix:style": "@php vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php --allow-risky=yes --diff --verbose"
},
"minimum-stability": "dev",
"prefer-stable": true
}