-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 1.08 KB
/
composer.json
File metadata and controls
39 lines (39 loc) · 1.08 KB
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
{
"name": "ahmed-bhs/hexagonal-maker-bundle",
"type": "symfony-bundle",
"description": "Hexagonal Architecture Maker Bundle for Symfony - Generate Commands, Queries, and more with CQRS pattern",
"keywords": ["hexagonal", "architecture", "cqrs", "solid", "maker", "symfony", "command", "query"],
"homepage": "https://github.com/ahmed-bhs/hexagonal-maker-bundle",
"license": "MIT",
"authors": [
{
"name": "Ahmed EBEN HASSINE",
"email": "ahmedbhs123@gmail.com"
}
],
"require": {
"php": ">=8.1",
"ext-json": "*",
"symfony/console": "^6.4|^7.0",
"symfony/framework-bundle": "^6.4|^7.0",
"symfony/maker-bundle": "^1.36",
"symfony/messenger": "^6.4|^7.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5|^10.0",
"phpstan/phpstan": "^1.10",
"symfony/phpunit-bridge": "^6.4|^7.0"
},
"autoload": {
"psr-4": {
"AhmedBhs\\HexagonalMakerBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AhmedBhs\\HexagonalMakerBundle\\Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"prefer-stable": true
}