-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·54 lines (54 loc) · 1.56 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
47
48
49
50
51
52
53
54
{
"name": "zorac/php-resque-scheduler",
"type": "library",
"description": "php-resque-scheduler is a PHP port of resque-scheduler, which adds support for scheduling jobs to PHP-Resque.",
"keywords": ["job", "background", "redis", "resque", "queue", "php", "schedule"],
"homepage": "https://www.github.com/zorac/php-resque-scheduler/",
"license": "MIT",
"authors": [
{
"name": "Chris Boulton",
"email": "chris@bigcommerce.com"
},
{
"name": "Wan Qi chen",
"email": "kami@kamisama.me",
"homepage": "http://www.kamisama.me"
},
{
"name": "Mark Rigby-Jones",
"email": "mark@rigby-jones.net",
"homepage": "https://mark.rigby-jones.net/"
}
],
"autoload": {
"psr-4": {
"Resque\\": "src/"
}
},
"bin": [
"bin/resque-scheduler"
],
"repositories": [
{
"type": "github",
"url": "https://github.com/zorac/php-resque"
}
],
"require": {
"php": ">=7.1.0",
"zorac/php-resque": "^2.9.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.5",
"friendsofphp/php-cs-fixer": "^2.16",
"pheromone/phpcs-security-audit": "^2.0",
"phpstan/phpstan": "^0.12",
"phpstan/phpstan-deprecation-rules": "^0.12",
"phpstan/phpstan-strict-rules": "^0.12"
},
"conflict": {
"chrisboulton/php-resque-scheduler": "*",
"kamisama/php-resque-ex-scheduler": "*"
}
}