-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
37 lines (34 loc) · 917 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": "pekkis/queue",
"type": "library",
"description": "Queue abstraction library",
"keywords": ["queue", "message queue"],
"homepage": "http://github.com/pekkis/queue",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Mikko Forsström",
"email": "[email protected]",
"homepage": "http://diktaattoriporssi.com",
"role": "Developer"
}
],
"require": {
"php": ">=7.1",
"symfony/console": "~3.4|~4.0",
"symfony/event-dispatcher": "~3.4|~4.0",
"ramsey/uuid": "^3.8",
"php-amqplib/php-amqplib": "~2.5",
"iron-io/iron_mq": "~4.0",
"aws/aws-sdk-php": "~3.2"
},
"require-dev": {
"phpunit/phpunit": "^7.3"
},
"autoload": {
"psr-4": {
"Pekkis\\Queue\\": "library/"
}
},
"minimum-stability": "stable"
}