forked from chrisboulton/php-resque-scheduler
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
46 lines (46 loc) · 1.18 KB
/
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
40
41
42
43
44
45
46
{
"name": "innogames/php-resque-scheduler",
"type": "library",
"description": "Namespaced port of chrisboulton/php-resque-scheduler which adds support for scheduling items in the future to Resque, works with innogames/php-resque",
"license": "MIT",
"authors": [
{
"name": "Chris Boulton",
"email": "[email protected]"
},
{
"name": "InnoGames (Grepolis Development Team)",
"email": "[email protected]"
},
{
"name": "Justus Graf",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"ResqueScheduler\\": [
"lib/",
"test/"
]
}
},
"repositories": [
{
"type": "git",
"url": "https://github.com/innogames/php-resque"
}
],
"require": {
"php": ">=8.1",
"innogames/php-resque": "^5.0.2",
"psr/log": "^1.1",
"ext-pcntl": "*",
"ext-json": "*"
},
"require-dev": {
"monolog/monolog": "^2.1",
"phpunit/phpunit": "^9.4",
"predis/predis": ">=1.1"
}
}