forked from ssi-anik/amqp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 1.01 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
{
"name": "anik/amqp",
"description": "php-amqplib wrapper that eases the consumption of RabbitMQ. A painless way of using RabbitMQ",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Syed Sirajul Islam Anik",
"email": "sirajul.islam.anik@gmail.com"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=7.0",
"php-amqplib/php-amqplib": "^2.9 !=2.12.0|^3.0",
"illuminate/container": "^5.8|^6.0|^7.0|^8.0",
"illuminate/pipeline": "^5.8|^6.0|^7.0|^8.0",
"illuminate/support": "^5.8|^6.0|^7.0|^8.0",
"laravel/helpers": "^1.2"
},
"require-dev": {},
"autoload": {
"psr-4": {
"Anik\\Amqp\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Anik\\Amqp\\ServiceProviders\\AmqpServiceProvider"
],
"aliases": {
"Amqp": "Anik\\Amqp\\Facades\\Amqp"
}
}
}
}