forked from resque/php-resque
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
61 lines (61 loc) · 1.73 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
55
56
57
58
59
60
61
{
"name": "healthengine/php-resque",
"type": "library",
"description": "Redis backed library for creating background jobs and processing them later. Based on resque for Ruby.",
"keywords": ["job", "background", "redis", "resque"],
"homepage": "https://github.com/HealthengineAU/php-resque",
"license": "MIT",
"authors": [
{
"name": "Chris Boulton",
"email": "[email protected]"
},
{
"email": "[email protected]",
"name": "Thomas Spencer"
}
],
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"ext-pcntl": "*",
"ext-posix": "*",
"ext-redis": "*",
"colinmollenhour/credis": "^1.0",
"psr/log": "^2.0 || ^3.0"
},
"scripts": {
"analyse": "@php vendor/bin/phpstan",
"fix": "@php vendor/bin/php-cs-fixer fix",
"lint": "@php vendor/bin/php-cs-fixer fix --diff --dry-run",
"test": "@php vendor/bin/phpunit"
},
"suggest": {
"ext-proctitle": "Allows php-resque to rename the title of UNIX processes to show the status of a worker."
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.38",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-strict-rules": "^1.5",
"phpunit/phpunit": "^10.4"
},
"bin": [
"bin/resque"
],
"autoload": {
"psr-0": {
"Resque": "lib/"
}
},
"autoload-dev": {
"psr-0": {
"Resque_Tests": "test/"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
},
"sort-packages": true
}
}