-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
32 lines (32 loc) · 946 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
{
"name": "shevron/proletarier",
"description": "An asynchronous event handler module for Zend Framework 2.x apps based on ØMQ",
"license": "Apache-2.0",
"homepage": "https://github.com/shevron/proletarier",
"keywords": [
"event", "zeromq", "zmq", "0mq", "asynchronous", "async",
"processing", "queue", "zend-framework", "background"
],
"authors": [
{
"name": "Shahar Evron",
"email": "[email protected]",
"homepage": "https://arr.gr/",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Proletarier\\": ["src/Proletarier", ""]
}
},
"require": {
"php": ">=5.5",
"ext-zmq": "*",
"ext-posix": "*",
"zendframework/zendframework": ">=2.4.0"
},
"suggest": {
"ext-pcntl": "Allows signal handling and cleaner shutdown of Worker processes"
}
}