-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
71 lines (71 loc) · 2.11 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
{
"name": "awd-studio/service-buses",
"description": "An implementation of such kind of patterns as: Command Bus, Query Bus and Event Bus; in a single package; driven by a Dependency Injection Container",
"type": "library",
"require": {
"php": "^8.2",
"psr/container": "^1.0|^2.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"dg/bypass-finals": "^1.1",
"php-coveralls/php-coveralls": "^2.1",
"vimeo/psalm": "^5.0",
"phpunit/php-code-coverage": "^9.2",
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-phpunit": "^1.3",
"psalm/plugin-symfony": "^5.0",
"psalm/plugin-phpunit": "^0.18.4"
},
"autoload": {
"psr-4": {
"AwdStudio\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"AwdStudio\\Tests\\": "tests"
}
},
"license": "MIT",
"authors": [
{
"name": "Anton Karpov",
"email": "awd.com.ua@gmail.com"
}
],
"minimum-stability": "stable",
"scripts": {
"setup-dev": [
"mkdir -p build/cache/php-cs-fixer",
"mkdir -p build/cache/phpstan",
"mkdir -p build/cache/phpunit",
"mkdir -p build/cache/psalm",
"mkdir -p build/report",
"composer install --working-dir=tools/php-cs-fixer --prefer-dist --no-progress --no-interaction"
],
"dev": "@setup-dev",
"csf": "tools/php-cs-fixer/vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.php",
"csf_check": "@csf --dry-run --diff --stop-on-violation",
"psalm": "vendor/bin/psalm",
"stan": "vendor/bin/phpstan analyse",
"unit": "vendor/bin/phpunit",
"test": [
"@csf_check",
"@psalm",
"@stan",
"@unit"
]
},
"keywords": [
"cqrs",
"command-bus",
"query-bus",
"event-bus",
"cqrs-pattern",
"service-buses",
"php"
],
"homepage": "https://github.com/awd-studio/service-buses"
}