This repository was archived by the owner on Jul 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
55 lines (55 loc) · 1.31 KB
/
composer.json
File metadata and controls
55 lines (55 loc) · 1.31 KB
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
{
"name": "mez/queuejitsu-scheduler",
"type": "library",
"description": "QueueJitsu Scheduler",
"license": "MIT",
"authors": [
{
"name": "Martin Meredith",
"email": "martin@sourceguru.net"
}
],
"require": {
"php": "^7.2 || ^8.0",
"ext-json": "*",
"dragonmantank/cron-expression": "^3.0",
"laminas/laminas-eventmanager": "^3.2",
"mez/queuejitsu": "^0.1 || ^2.0 || ^3.0.1 || ^4.0",
"predis/predis": "^1.1",
"psr/container": "^1.0",
"psr/log": "^1.1",
"ramsey/uuid": "^3.7 || ^4"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.6",
"friendsofphp/php-cs-fixer": "^2.16",
"maglnet/composer-require-checker": "^2.1",
"nikic/php-parser": "^4.6",
"php-parallel-lint/php-parallel-lint": "^1.2",
"phpro/grumphp-shim": "^0.19.1",
"phpstan/phpstan": "^0.12.32",
"roave/security-advisories": "dev-master",
"sensiolabs/security-checker": "^6.0"
},
"config": {
"optimize-autoloader": true,
"preferred-install": {
"stickee/*": "source",
"mez/*": "source",
"*": "dist"
},
"sort-packages": true
},
"extra": {
"zf": {
"config-provider": "QueueJitsu\\Scheduler\\ConfigProvider"
}
},
"autoload": {
"psr-4": {
"QueueJitsu\\Scheduler\\": [
"src"
]
}
}
}