-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
75 lines (75 loc) · 1.93 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
{
"name": "matiux/ddd-starter-pack",
"type": "library",
"license": "MIT",
"keywords": [
"ddd",
"domain-driven-design",
"domain",
"message",
"aggregate",
"message publisher",
"message consumer"
],
"description": "Basic Domain Driven Design utils",
"require": {
"php": ">=8.2",
"ext-json": "*",
"ramsey/uuid": "^3.7|^4.0",
"symfony/options-resolver": "^5.0 | ^4.0 | ^6.0 | ^6.1 | ^7.0",
"webmozart/assert": "^1.9"
},
"require-dev": {
"aws/aws-sdk-php": "^3.134",
"broadway/broadway": "^2.5",
"doctrine/orm": "^2.10",
"friendsofphp/php-cs-fixer": "^3.0",
"matiux/php-project-autopilot": "dev-master",
"mockery/mockery": "^1.3",
"nyholm/dsn": "^2.0",
"phpunit/phpunit": "^10",
"psalm/plugin-mockery": "^1.1",
"psalm/plugin-phpunit": "^0.18",
"roave/security-advisories": "dev-latest",
"symfony/messenger": "^7.0",
"symfony/orm-pack": "^1.0",
"vimeo/psalm": "^5.0",
"weirdan/doctrine-psalm-plugin": "^2.7"
},
"authors": [
{
"name": "Matteo Galacci",
"email": "m.galacci@gmail.com",
"homepage": "https://www.matteogalacci.it"
}
],
"autoload": {
"psr-4": {
"DDDStarterPack\\": "src/Matiux/DDDStarterPack/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Unit\\DDDStarterPack\\": "tests/Unit/DDDStarterPack/",
"Tests\\Integration\\DDDStarterPack\\": "tests/Integration/DDDStarterPack/",
"Tests\\Learning\\": "tests/Learning/",
"Tests\\Support\\": "tests/Support/",
"Tests\\Tool\\": "tests/Tool/"
}
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true
}
},
"scripts": {
"post-install-cmd": [
"bash vendor/matiux/php-project-autopilot/src/configure.sh"
],
"post-update-cmd": [
"bash vendor/matiux/php-project-autopilot/src/configure.sh"
]
}
}