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 30
/
composer.json
96 lines (96 loc) · 2.68 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
88
89
90
91
92
93
94
95
96
{
"name": "slm/queue-doctrine",
"description": "Laminas Framework module that integrates Doctrine as queuing system",
"license": "BSD-3-Clause",
"type": "library",
"keywords": [
"laminas",
"mezzio",
"queue",
"job",
"doctrine",
"db",
"database"
],
"homepage": "https://github.com/Webador/SlmQueueDoctrine",
"authors": [
{
"name": "Stefan Kleff",
"email": "[email protected]",
"homepage": "https://www.goalio.de"
},
{
"name": "Bas Kamer",
"email": "[email protected]",
"homepage": "https://bushbaby.nl"
}
],
"require": {
"php": "~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0",
"laminas/laminas-eventmanager": "^3.4",
"laminas/laminas-router": "^3.5",
"slm/queue": "^3.1",
"doctrine/dbal": "^3.1.2",
"doctrine/annotations": "^1.8",
"laminas/laminas-config": "^3.7"
},
"require-dev": {
"ext-sqlite3": "*",
"doctrine/doctrine-orm-module": "^4.1 || ^5.0 || ^6.0",
"laminas/laminas-modulemanager": "^2.11",
"laminas/laminas-view": "^2.13",
"laminas/laminas-log": "^2.15",
"laminas/laminas-i18n": "^2.12",
"laminas/laminas-serializer": "^2.11",
"laminas/laminas-mvc": "^3.3",
"doctrine/orm": "^2.11.1",
"phpunit/phpunit": "^9.3",
"squizlabs/php_codesniffer": "^3.6.2"
},
"conflict": {
"doctrine/cache": ">=2.0"
},
"suggest": {
"doctrine/doctrine-orm-module": "If you use Doctrine in combination with Laminas",
"roave/psr-container-doctrine": "Configures Doctrine services automatically."
},
"extra": {
"branch-alias": {
"dev-master": "3.1.x-dev"
},
"laminas": {
"module": "SlmQueueDoctrine\\Module",
"config-provider": "SlmQueueDoctrine\\ConfigProvider",
"component-whitelist": [
"slm/queue"
]
}
},
"autoload": {
"psr-4": {
"SlmQueueDoctrine\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SlmQueueDoctrineTest\\": "tests/src"
}
},
"scripts": {
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": [
"phpunit",
"@composer test --working-dir=tests/laminas-runner",
"@composer test --working-dir=tests/mezzio-runner"
]
},
"config": {
"platform": {
"php": "7.4.0"
},
"allow-plugins": {
"composer/package-versions-deprecated": true
}
}
}