-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
107 lines (107 loc) · 3.31 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "gember/example-event-sourcing-dcb",
"description": "Example project (Proof of Concept) with Event Sourcing in PHP using the Dynamic Consistency Boundary pattern (DCB)",
"license": "MIT",
"type": "project",
"keywords": [
"event-sourcing",
"example",
"dcb",
"dynamic-consistency-boundary",
"domain-driven-design",
"ddd"
],
"authors": [
{
"name": "Jeroen de Graaf",
"email": "gember@jero.work",
"homepage": "https://jero.work"
}
],
"require": {
"php": "^8.3",
"ext-ctype": "*",
"ext-iconv": "*",
"doctrine/dbal": "^4",
"doctrine/doctrine-bundle": "^2.13",
"doctrine/doctrine-migrations-bundle": "^3.3",
"doctrine/orm": "^3.2",
"fakerphp/faker": "^1.23",
"gember/event-sourcing": "dev-main",
"gember/event-sourcing-symfony-bundle": "dev-main",
"symfony/console": "7.1.*",
"symfony/dotenv": "7.1.*",
"symfony/flex": "^2",
"symfony/framework-bundle": "7.1.*",
"symfony/http-kernel": "7.1.*",
"symfony/messenger": "7.1.*",
"symfony/runtime": "7.1.*",
"symfony/yaml": "7.1.*"
},
"require-dev": {
"captainhook/captainhook": "^5.23",
"friendsofphp/php-cs-fixer": "^3.58",
"phpstan/phpstan": "^1.11",
"rector/rector": "^1.2",
"shipmonk/composer-dependency-analyser": "^1.5"
},
"replace": {
"symfony/polyfill-ctype": "*",
"symfony/polyfill-iconv": "*",
"symfony/polyfill-php72": "*",
"symfony/polyfill-php73": "*",
"symfony/polyfill-php74": "*",
"symfony/polyfill-php80": "*",
"symfony/polyfill-php81": "*",
"symfony/polyfill-php82": "*"
},
"conflict": {
"symfony/symfony": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Gember\\ExampleEventSourcingDcb\\": "src/"
}
},
"config": {
"allow-plugins": {
"php-http/discovery": true,
"symfony/flex": true,
"symfony/runtime": true
},
"sort-packages": true
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "7.1.*"
}
},
"scripts": {
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
],
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
},
"cs": "vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.php",
"cs:dry-run": "vendor/bin/php-cs-fixer fix --diff --dry-run --config=.php-cs-fixer.php",
"dependency-analyser": "vendor/bin/composer-dependency-analyser",
"phpstan": "vendor/bin/phpstan analyse -c phpstan.neon",
"phpstan:baseline": "vendor/bin/phpstan analyse -c phpstan.neon --generate-baseline phpstan-baseline.php src",
"rector": "vendor/bin/rector process --ansi",
"rector:dry-run": "vendor/bin/rector process --ansi --dry-run",
"test": [
"@rector:dry-run",
"@cs:dry-run",
"@phpstan",
"@dependency-analyser"
]
}
}