This repository has been archived by the owner on Jul 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathcomposer.json
87 lines (87 loc) · 2.53 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
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
{
"name": "slm/queue",
"description": "Laminas module that integrates with various queue management systems",
"license": "BSD-3-Clause",
"type": "library",
"keywords": [
"laminas",
"mezzio",
"queue",
"job"
],
"homepage": "https://github.com/Webador/SlmQueue",
"authors": [
{
"name": "Jurian Sluiman",
"email": "jurian@juriansluiman.nl",
"homepage": "http://juriansluiman.nl"
},
{
"name": "Michaël Gallego",
"email": "mic.gallego@gmail.com",
"homepage": "http://www.michaelgallego.fr"
},
{
"name": "Bas Kamer",
"email": "baskamer@gmail.com"
},
{
"name": "Roel van Duijnhoven",
"email": "roel.duijnhoven@gmail.com",
"homepage": "http://www.roelvanduijnhoven.nl"
}
],
"require": {
"php": "~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0",
"ext-json": "*",
"laminas/laminas-eventmanager": "^3.4",
"laminas/laminas-servicemanager": "^3.11",
"laminas/laminas-stdlib": "^3.7.1",
"laminas/laminas-cli": "^1.2"
},
"require-dev": {
"laminas/laminas-mvc": "^3.3",
"laminas/laminas-modulemanager": "^2.11",
"laminas/laminas-view": "^2.13",
"laminas/laminas-serializer": "^2.11",
"laminas/laminas-log": "^2.15",
"laminas/laminas-i18n": "^2.12",
"laminas/laminas-config": "^3.7",
"phpunit/phpunit": "^9.3",
"squizlabs/php_codesniffer": "^3.6.2"
},
"suggest": {
"slm/queue-sqs": "If you are using Amazon SQS",
"slm/queue-beanstalkd": "If you are using Beanstalk",
"slm/queue-doctrine": "If you are using Doctrine ORM",
"rnd-cosoft/slm-queue-rabbitmq": "If you are using RabbitMQ"
},
"extra": {
"branch-alias": {
"dev-master": "1.1.x-dev"
},
"laminas": {
"module": "SlmQueue",
"config-provider": "SlmQueue\\ConfigProvider"
}
},
"autoload": {
"psr-4": {
"SlmQueue\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SlmQueueTest\\": "tests/src"
}
},
"scripts": {
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": [
"phpunit",
"@composer test --working-dir=tests/integration/laminas",
"@composer test --working-dir=tests/integration/mezzio"
]
}
}