-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.4 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.4 KB
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
38
39
40
41
42
43
44
45
46
{
"name": "onebip/recruiter",
"description": "Job Queue Manager: high performance, high volume, persistent, fault tolerant. 100% PHP/MongoDB, 100% Awesome",
"type": "project",
"version": "0.0.1",
"keywords": ["job", "jobs", "deferred", "offline", "delay", "background", "queue", "manager", "mongodb"],
"homepage": "https://github.com/onebip/recruiter",
"license": "MIT",
"authors": [{
"name": "gabriele.lana",
"email": "[email protected]"
}],
"require": {
"php": ">=5.6",
"psr/log": "1.0.0",
"gabrielelana/byte-units": "~0.1",
"ulrichsg/getopt-php": "~2.1",
"onebip/onebip-array": "dev-master",
"onebip/onebip-concurrency": "dev-master",
"alcaeus/mongo-php-adapter": "^1.1",
"symfony/event-dispatcher": "2.*"
},
"suggest": {
"symfony/console": "In order to use Recruiter\\Command\\RecruiterJobCommand."
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"giorgiosironi/eris": "dev-master"
},
"minimum-stability": "dev",
"prefer-stable": true,
"bin": [
"bin/recruiter",
"bin/worker"
],
"autoload": {
"psr-4": {
"Recruiter\\": "src/Recruiter",
"Timeless\\": "src/Timeless",
"Sink\\": "src/Sink"
},
"files": [
"src/Timeless/functions.php"
]
}
}