-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
83 lines (83 loc) · 2.75 KB
/
Copy pathcomposer.json
File metadata and controls
83 lines (83 loc) · 2.75 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
{
"name": "somework/cqrs-bundle",
"description": "CQRS utilities for Symfony Messenger integration.",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Igor Pinchuk",
"email": "i.pinchuk.work@gmail.com"
}
],
"keywords": ["cqrs", "symfony", "messenger", "command-bus", "query-bus", "event-bus", "ddd"],
"homepage": "https://github.com/somework/cqrs",
"support": {
"issues": "https://github.com/somework/cqrs/issues",
"source": "https://github.com/somework/cqrs"
},
"require": {
"php": "^8.2",
"symfony/config": "^7.2",
"symfony/console": "^7.2",
"symfony/dependency-injection": "^7.2",
"symfony/framework-bundle": "^7.2",
"symfony/http-kernel": "^7.2",
"symfony/messenger": "^7.2",
"psr/log": "^3.0"
},
"require-dev": {
"doctrine/dbal": "^4.0",
"doctrine/orm": "^3.6",
"friendsofphp/php-cs-fixer": "^3.58",
"open-telemetry/api": "^1.8",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"phpstan/phpstan-symfony": "^2.0",
"phpunit/phpunit": "^11.5",
"symfony/lock": "^7.2",
"symfony/rate-limiter": "^7.2"
},
"conflict": {
"doctrine/dbal": "<4.0",
"open-telemetry/api": "<1.8",
"symfony/lock": "<7.2",
"symfony/rate-limiter": "<7.2"
},
"suggest": {
"symfony/lock": "Required for idempotency deduplication bridge (IdempotencyStamp to DeduplicateStamp)",
"doctrine/dbal": "Required for DBAL-backed transactional outbox storage (DbalOutboxStorage)",
"symfony/rate-limiter": "Required for rate limiting message dispatch (RateLimitStampDecider)",
"open-telemetry/api": "Required for OpenTelemetry tracing bridge (^1.8)"
},
"autoload": {
"psr-4": {
"SomeWork\\CqrsBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SomeWork\\CqrsBundle\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-main": "0.4.x-dev"
}
},
"scripts": {
"fix": "php-cs-fixer fix --config=.php-cs-fixer.dist.php --allow-risky=yes",
"cs-check": "php-cs-fixer fix --config=.php-cs-fixer.dist.php --allow-risky=yes --dry-run --diff",
"phpstan": "phpstan analyse",
"phpunit": "phpunit",
"test": ["@cs-check", "@phpstan", "@phpunit"]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}