This repository has been archived by the owner on Jul 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
61 lines (61 loc) · 1.55 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": "mez/queuejitsu",
"type": "library",
"description": "A Modern Queueing System",
"license": "MIT",
"authors": [
{
"name": "Martin Meredith",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2 || ^8.0",
"ext-json": "*",
"ext-pcntl": "^7.2",
"ext-posix": "^7.2",
"laminas/laminas-eventmanager": "^3.2",
"predis/predis": "^1.1",
"psr/container": "^1.0",
"psr/log": "^1.0",
"ramsey/uuid": "^3.7 || ^4.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.6",
"friendsofphp/php-cs-fixer": "~2",
"maglnet/composer-require-checker": "^2.1",
"nikic/php-parser": "^4.6",
"php-parallel-lint/php-parallel-lint": "^1.2",
"phpro/grumphp-shim": "^0.19.0",
"phpstan/phpstan": "^0.12.32",
"roave/security-advisories": "dev-master",
"sensiolabs/security-checker": "^6.0"
},
"suggest": {
"ext-pcntl": "Allows Workers to be ran in forked processes",
"mez/queuejitsu-cli": "Command Line integration",
"predis/predis": "Connect up to Redis"
},
"config": {
"optimize-autoloader": true,
"preferred-install": {
"stickee/*": "source",
"*": "dist"
},
"sort-packages": true
},
"extra": {
"zf": {
"config-provider": "QueueJitsu\\ConfigProvider"
}
},
"autoload": {
"psr-4": {
"QueueJitsu\\": "src"
}
},
"scripts": {
"cs-check": "php-cs-fixer --allow-risky=yes --config=.php_cs --dry-run --verbose fix",
"cs-fix": "php-cs-fixer --allow-risky=yes --config=.php_cs --verbose fix"
}
}