-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
63 lines (63 loc) · 1.7 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
{
"name": "devscast/symfony-hexa-bundle",
"type": "library",
"license": "CC-BY-NC-SA-4.0",
"description": "Set of reusable components for Symfony applications built with Hexagonal Architecture",
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": ">=8.3",
"doctrine/doctrine-bundle": "^2.12.0",
"doctrine/orm": "^2.16.0",
"erusev/parsedown": "^1.7.4",
"knplabs/knp-paginator-bundle": "^6.4.0",
"symfony/config": "7.1.*",
"symfony/console": "7.1.*",
"symfony/contracts": "^3.3",
"symfony/dependency-injection": "7.1.*",
"symfony/form": "7.1.*",
"symfony/http-foundation": "7.1.*",
"symfony/http-kernel": "7.1.*",
"symfony/mailer": "7.1.*",
"symfony/maker-bundle": "^1.51",
"symfony/messenger": "7.1.*",
"symfony/mime": "7.1.*",
"symfony/property-access": "7.1.*",
"symfony/property-info": "7.1.*",
"symfony/security-core": "7.1.*",
"symfony/serializer": "7.1.*",
"symfony/translation": "7.1.*",
"symfony/uid": "7.1.*",
"twig/twig": "^3.10"
},
"require-dev": {
"phpstan/phpstan": "^1.11.7",
"phpunit/phpunit": "^9.6.20",
"rector/rector": "^1.2.0",
"squizlabs/php_codesniffer": "^3.10.1",
"symplify/easy-coding-standard": "^12.3.1"
},
"config": {
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"Devscast\\Bundle\\HexaBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Devscast\\Bundle\\HexaBundle\\Tests\\": "tests/"
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/devscast-software/symfony-hexa-bundle"
}
]
}