-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
66 lines (66 loc) · 1.5 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
{
"name": "ecotone/core",
"license": "MIT",
"homepage": "https://docs.ecotone.tech",
"type": "library",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Dariusz Gafka",
"email": "[email protected]"
}
],
"keywords": ["ddd","cqrs","EventSourcing","ecotone","service-bus"],
"description": "Core modules for running Ecotone Framework",
"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": "^2.0|^3.0",
"ramsey/uuid": "^3.0|^4.0",
"friendsofphp/proxy-manager-lts": "^1.0.12"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"behat/behat": "^3.10",
"phpstan/phpstan": "^1.8",
"symfony/expression-language": "^6.0"
},
"scripts": {
"tests:phpstan": "vendor/bin/phpstan",
"tests:phpunit": ["vendor/bin/phpunit"],
"tests:behat": ["vendor/bin/behat -vvv"],
"tests:ci": [
"@tests:phpstan",
"@tests:phpunit",
"@tests:behat"
]
},
"extra": {
"branch-alias": {
"dev-main": "2.0.0.x-dev"
},
"ecotone": {
"repository": "ecotone"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"wikimedia/composer-merge-plugin": true
}
},
"conflict": {
"ecotone/ecotone": "*"
}
}