-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathcomposer.json
69 lines (69 loc) · 1.82 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
64
65
66
67
68
69
{
"name": "nuwber/rabbitevents",
"description": "The Nuwber RabbitEvents package",
"keywords": ["laravel", "rabbitmq", "events", "broadcast", "publish", "pub", "sub"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Eugene Kirdzei",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"ext-json": "*",
"enqueue/amqp-lib": "^0.10.19",
"illuminate/support": "9 - 11",
"illuminate/events": "9 - 11",
"illuminate/console": "9 - 11",
"illuminate/container": "9 - 11"
},
"replace": {
"rabbitevents/foundation": "self.version",
"rabbitevents/publisher": "self.version",
"rabbitevents/listener": "self.version"
},
"require-dev": {
"mockery/mockery": "^1.6.0",
"phpunit/phpunit": "^10.5|^11.0",
"vlucas/phpdotenv": "^v5.4.1",
"phpstan/phpstan": "^1.10"
},
"autoload": {
"psr-4": {
"RabbitEvents\\": "src/RabbitEvents"
},
"files": [
"src/RabbitEvents/Publisher/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"RabbitEvents\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"RabbitEvents\\Publisher\\PublisherServiceProvider",
"RabbitEvents\\Foundation\\RabbitEventsServiceProvider",
"RabbitEvents\\Listener\\ListenerServiceProvider"
],
"aliases": {
"RabbitEvents": "RabbitEvents\\Listener\\Facades\\RabbitEvents"
}
}
},
"suggest": {
"ext-pcntl": "Required to use all features of the worker.",
"ext-amqp": "Using this extension makes your app faster. If you're using it you need to install enqueue/amqp-ext.",
"enqueue/amqp-ext": "This package is necessary if you want to use `ext-amqp`."
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}