-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.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
{
"name": "micro-module/task",
"type": "library",
"description": "Micro module Task common library",
"license": "proprietary",
"require": {
"php": "^8.0",
"beberlei/assert": "^3.2",
"micro-module/enqueue": "^0.10",
"enqueue/fs": "^0.10",
"micro-module/null": "^0.11",
"league/tactician-bundle": "^1.1",
"micro-module/base": "^0.7.0",
"micro-module/broadway": "^2.6",
"micro-module/job-queue": "~0.10",
"micro-module/tactician-command-events": "~0.7",
"psr/log": "^1.1",
"queue-interop/amqp-interop": "^0.8",
"queue-interop/queue-interop": "^0.7|^0.8"
},
"require-dev": {
"mockery/mockery": "^1.3",
"php-parallel-lint/php-console-highlighter": "^0.4",
"php-parallel-lint/php-parallel-lint": "^1.0",
"phpmd/phpmd": "^2.8",
"phpstan/phpstan": "^0.12",
"phpstan/phpstan-mockery": "^0.12",
"phpstan/phpstan-phpunit": "^0.12",
"phpunit/phpunit": "^9.0",
"roave/security-advisories": "dev-master",
"sensiolabs-de/deptrac-shim": "^0.15.2",
"symplify/easy-coding-standard": "^9.4",
"vimeo/psalm": "^4.10"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"MicroModule\\Task\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"MicroModule\\Task\\Tests\\Unit\\": "tests/unit"
}
}
}