forked from oyagev/Sweatshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (35 loc) · 931 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" : "sweatshop/sweatshop",
"type": "library",
"description": "Abstraction layer for message brokers and job servers, including process management",
"homepage": "https://github.com/oyagev/Sweatshop",
"authors": [
{
"name": "Oren Yagev",
"email": "oyagev@gmail.com",
"homepage": "http://www.orenyagev.com"
}
],
"minimum-stability": "stable",
"repositories": [
{
"type": "composer",
"url": "https://packages.zendframework.com/"
}
],
"require": {
"php": ">=5.3.0",
"monolog/monolog": "1.2.*",
"zendframework/zend-config": "2.0.*",
"pimple/pimple" : ">1.0"
},
"suggest" : {
"ext-amqp": "(>1.0) Necessary for RabbitMQ",
"ext-gearman" : "(>1.0) Necessary for Gearman"
},
"autoload": {
"psr-0": {
"Sweatshop": "src/"
}
}
}