-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
99 lines (99 loc) · 2.82 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
{
"name": "beelab/symfony-beelab",
"type": "project",
"description": "Adapt this file with your actual project content",
"license": "MIT",
"authors": [
{
"name": "Massimiliano Arione",
"email": "[email protected]"
},
{
"name": "Mauro D'Alatri",
"email": "[email protected]"
}
],
"require": {
"php": "^8.3",
"ext-ctype": "*",
"ext-iconv": "*",
"ext-intl": "*",
"ext-mbstring": "*",
"symfony/flex": "^2.5"
},
"flex-require": {
"doctrine/doctrine-bundle": "^2.13",
"doctrine/orm": "^3.3",
"ramsey/uuid-doctrine": "^2.1",
"symfony/asset": "^6.4",
"symfony/console": "^6.4",
"symfony/form": "^6.4",
"symfony/framework-bundle": "^6.4",
"symfony/mailer": "^6.4",
"symfony/messenger": "^6.4",
"symfony/monolog-bundle": "^3.10",
"symfony/security-bundle": "^6.4",
"symfony/translation": "^6.4",
"symfony/twig-bundle": "^6.4",
"symfony/validator": "^6.4",
"symfony/web-link": "^6.4",
"symfony/yaml": "^6.4"
},
"replace": {
"symfony/polyfill-ctype": "*",
"symfony/polyfill-iconv": "*",
"symfony/polyfill-intl-grapheme": "*",
"symfony/polyfill-intl-icu": "*",
"symfony/polyfill-intl-idn": "*",
"symfony/polyfill-intl-normalizer": "*",
"symfony/polyfill-mbstring": "*",
"symfony/polyfill-php72": "*",
"symfony/polyfill-php80": "*",
"symfony/polyfill-php81": "*",
"symfony/polyfill-php82": "*",
"symfony/polyfill-php83": "*"
},
"flex-require-dev": {
"beelab/test-bundle": "^7.0",
"dama/doctrine-test-bundle": "^8.2",
"deployer/deployer": "^7.5",
"doctrine/doctrine-fixtures-bundle": "^4.0",
"phpunit/phpunit": "^12.0",
"symfony/debug-bundle": "^6.4",
"symfony/phpunit-bridge": "^7.2",
"symfony/profiler-pack": "^1.0",
"vincentlanglet/twig-cs-fixer": "^3.5"
},
"config": {
"allow-plugins": {
"symfony/flex": true,
"symfony/runtime": true
},
"bin-dir": "bin",
"sort-packages": true
},
"extra": {
"symfony": {
"allow-contrib": true,
"require": "^6.4"
}
},
"autoload": {
"psr-4": {
"Application\\": "src/Application/",
"Domain\\": "src/Domain/",
"Infrastructure\\": "src/Infrastructure/",
"Presentation\\": "src/Presentation/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd"
}
}
}