forked from spinx/sidekiq-job-php
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
39 lines (39 loc) · 964 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
38
39
{
"name": "hosportal/sidekiq-job-php",
"description": "Push and schedule jobs to Sidekiq from PHP",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Damjan Znidarsic",
"email": "[email protected]"
}
],
"keywords" : [
"sidekiq",
"resque",
"redis",
"worker",
"queue",
"processing"
],
"require": {
"php": ">=5.4",
"predis/predis": "^1.0"
},
"require-dev": {
"symfony/var-dumper": "^2.7",
"phpspec/phpspec": "^2.2",
"henrikbjorn/phpspec-code-coverage": "^1.0",
"knplabs/phpspec-welldone-extension": "dev-master",
"phpspec/nyan-formatters": "^1.0",
"ciaranmcnulty/phpspec-typehintedmethods": "^1.01",
"m6web/redis-mock": "^2.2"
},
"autoload": {
"psr-4": {"SidekiqJob\\": "src/"}
},
"config": {
"bin-dir": "bin"
}
}