forked from ecotoneframework/ecotone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.22 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
{
"name": "ecotone/ecotone",
"license": "MIT",
"homepage": "https://docs.ecotone.tech",
"type": "library",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Dariusz Gafka",
"email": "dgafka.mail@gmail.com"
}
],
"keywords": [
"ddd",
"cqrs",
"EventSourcing",
"ecotone",
"service-bus"
],
"description": "Ecotone is Service Bus Implementation, which enables message driven architecture with DDD, CQRS, Event Sourcing in PHP",
"autoload": {
"psr-4": {
"Ecotone\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Test\\Ecotone\\": "tests",
"IncorrectAttribute\\": [
"tests\\AnnotationFinder\\Fixture\\Usage\\Attribute\\TestingNamespace\\IncorrectAttribute\\TestingNamespace"
]
}
},
"require": {
"php": ">=8.0",
"psr/log": "^1.1|^2.0",
"ramsey/uuid": "^3.0|^4.0",
"friendsofphp/proxy-manager-lts": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0.0",
"behat/behat": "^3.3.1",
"php-coveralls/php-coveralls": "^2.1.0",
"phpstan/phpstan": "^0.12",
"symfony/expression-language": "^3.0|^4.0|^5.0"
},
"extra": {
"branch-alias": {
"dev-master": "1.10.5-dev"
}
}
}