-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
35 lines (35 loc) · 1016 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
{
"name": "iwai/react-resque",
"type": "library",
"description": "ReactPHP based resque worker and job in event loop implementation in PHP",
"keywords": [ "job", "background", "redis", "resque", "react" ],
"homepage": "https://github.com/iwai/react-resque",
"license": "MIT",
"authors": [
{ "name": "Yuji Iwai", "email": "[email protected]" }
],
"repositories": [
{ "type": "vcs", "url": "https://github.com/iwai/php-redis-react.git" }
],
"require": {
"php": ">=5.4.0",
"ext-pcntl": "*",
"ext-libev": "*",
"kamisama/php-resque-ex": ">=1.2.7",
"react/react": "0.4.*",
"clue/redis-react": "dev-support-persitent as 0.4.0-dev",
"evenement/evenement": "2.0.*",
"mkraemer/react-pcntl": "2.0.0"
},
"autoload": {
"psr-4": {
"Iwai\\React\\": "src"
}
},
"autoload-dev": {
"files": [ "demo/job.php" ]
},
"bin": [
"bin/resque"
]
}