-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
105 lines (105 loc) · 3.32 KB
/
Copy pathcomposer.json
File metadata and controls
105 lines (105 loc) · 3.32 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "hirale/queue",
"type": "magento-module",
"license": "OSL-3.0",
"description": "A queue module for OpenMage and Maho, built on Symfony Messenger. Backend-agnostic (Redis Streams in v3.0).",
"keywords": [
"maho",
"mahocommerce",
"openmage",
"magento1",
"queue",
"messenger",
"redis"
],
"require": {
"php": ">=8.3",
"ext-json": "*",
"ext-redis": "*",
"symfony/messenger": "^7.4 || ^8.0",
"symfony/serializer": "^7.4 || ^8.0",
"symfony/redis-messenger": "^7.4 || ^8.0",
"monolog/monolog": "^3.9"
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"phpstan/phpstan": "^2.0",
"friendsofphp/php-cs-fixer": "^3.50",
"mahocommerce/maho": "^26.5"
},
"suggest": {
"symfony/doctrine-messenger": "^7.4 || ^8.0 — required for the Doctrine (database) backend",
"symfony/amqp-messenger": "^7.4 || ^8.0 — required for the AMQP/RabbitMQ backend",
"symfony/amazon-sqs-messenger": "^7.4 || ^8.0 — required for the Amazon SQS backend",
"symfony/beanstalkd-messenger": "^7.4 || ^8.0 — required for the Beanstalkd backend",
"mahocommerce/maho": "^26.5 — the Maho platform (alternatively openmage/magento-lts >=20.17)",
"magento-hackathon/magento-composer-installer": "Deploys extra.map into the OpenMage project (resolves at 1.3.2; see README — Maho needs no installer plugin)"
},
"config": {
"allow-plugins": {
"mahocommerce/maho-composer-plugin": true
}
},
"autoload": {
"psr-4": {
"Hirale\\Queue\\": "lib/Hirale/Queue/",
"MahoCLI\\Commands\\": "lib/MahoCLI/Commands/"
}
},
"autoload-dev": {
"psr-4": {
"HiraleQueue\\Tests\\": "tests/"
}
},
"extra": {
"map": [
[
"app/etc/modules/Hirale_Queue.xml",
"app/etc/modules/Hirale_Queue.xml"
],
[
"app/code/community/Hirale/Queue",
"app/code/community/Hirale/Queue"
],
[
"app/design/adminhtml/default/default/template/hirale",
"app/design/adminhtml/default/default/template/hirale"
],
[
"shell/hirale_queue_worker.php",
"shell/hirale_queue_worker.php"
],
[
"shell/hirale_queue_test.php",
"shell/hirale_queue_test.php"
],
[
"shell/hirale_queue_stats.php",
"shell/hirale_queue_stats.php"
],
[
"shell/hirale_queue_health.php",
"shell/hirale_queue_health.php"
],
[
"shell/hirale_queue_retry_failed.php",
"shell/hirale_queue_retry_failed.php"
]
]
},
"scripts": {
"test": "phpunit",
"phpstan": "phpstan analyse --memory-limit=512M",
"cs-check": "php-cs-fixer fix --dry-run --diff",
"cs-fix": "php-cs-fixer fix"
},
"authors": [
{
"name": "Hirale"
}
],
"conflict": {
"mahocommerce/maho": "<26.5",
"openmage/magento-lts": "<20.17"
}
}