forked from puzzle-org/amqp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 918 Bytes
/
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" : "puzzle/amqp",
"description" : "AMQP implementation based on PECL extension",
"type" : "library",
"license": "MIT",
"authors" : [{
"name" : "Nicolas Le Nardou",
"email" : "nico.ln@gmail.com"
}
],
"keywords" : [
"amqp",
"asynchronous"
],
"autoload" : {
"psr-4" : {
"Puzzle\\AMQP\\" : "src"
}
},
"require" : {
"php": ">=5.6",
"puzzle/configuration" : "~3.0",
"puzzle/pieces" : "~2.0",
"symfony/console": "~3.2",
"swarrot/swarrot": "~2.3",
"knplabs/gaufrette": "~0.2",
"symfony/event-dispatcher": "~3.2"
},
"require-dev" : {
"phpunit/phpunit" : "~5.7",
"empi89/php-amqp-stubs": "dev-master",
"puzzle/assert": "~1.0"
},
"suggest": {
"ext-amqp": "PECL AMQP extension is required"
}
}