-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
executable file
·63 lines (63 loc) · 1.66 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
{
"name": "aloware/horizon-wildcard-consumer",
"description": "Extended Laravel Horizon providing listening dynamically added queues matched by wildcard.",
"license": "MIT",
"authors": [
{
"name": "Bayram A",
"email": "[email protected]"
},
{
"name": "Mohsen A",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1",
"ext-json": "*",
"ext-pcntl": "*",
"illuminate/support": "^5.7|^6.0",
"illuminate/console": "^5.7|^6.0",
"illuminate/queue": "^5.7|^6.0",
"laravel/horizon": "^2.0|^3.0",
"illuminate/database": "^5.7|^5.8|^6.0",
"vladimir-yuldashev/laravel-queue-rabbitmq": "^8.0|^9.0|^10.0"
},
"require-dev": {
"phpunit/phpunit": "^7.5|^8.4",
"mockery/mockery": "^1.0",
"orchestra/testbench": "3.7.*|^4.3",
"aloware/shift-php-cs": "dev-master"
},
"autoload": {
"psr-4": {
"Aloware\\HorizonWildcardConsumer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Aloware\\HorizonWildcardConsumer\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Aloware\\HorizonWildcardConsumer\\HorizonWildcardConsumerServiceProvider"
]
}
},
"suggest": {
"ext-pcntl": "Required by Laravel Horizon."
},
"scripts": {
"test": [
"@test:style",
"@test:unit"
],
"test:style": "@php vendor/bin/php-cs-fixer fix --config=.php_cs.dist --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.dist --allow-risky=yes --diff --verbose"
},
"minimum-stability": "dev",
"prefer-stable": true
}