-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
130 lines (130 loc) · 4.12 KB
/
composer.json
File metadata and controls
130 lines (130 loc) · 4.12 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
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"type": "project",
"license": "proprietary",
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": "^8.4",
"ext-ctype": "*",
"ext-iconv": "*",
"ext-imagick": "*",
"ext-mbstring": "*",
"doctrine/dbal": "^3.10.5",
"doctrine/doctrine-bundle": "^2.18.2",
"doctrine/doctrine-migrations-bundle": "^3.7",
"doctrine/orm": "^3.6.3",
"dragonmantank/cron-expression": "^3.6",
"easycorp/easyadmin-bundle": "^4.29.5",
"gedmo/doctrine-extensions": "^3.22",
"jbtronics/settings-bundle": "^3.2.1",
"knplabs/knp-menu-bundle": "^3.7",
"league/csv": "^9.28.0",
"lightsaml2/lightsaml": ">=3.0.1",
"lightsaml2/sp-bundle": "^5.0",
"lightsaml2/symfony-bridge": "^6.0.0",
"lorisleiva/cron-translator": "^0.4.6",
"phpdocumentor/reflection-docblock": "^5.6.7",
"phpstan/phpdoc-parser": "^2.3.2",
"psr/simple-cache": "^3.0",
"schulit/common-bundle": "^6.2.1",
"stof/doctrine-extensions-bundle": ">=1.15.3",
"symfony/asset": "^7.4",
"symfony/asset-mapper": "^7.4",
"symfony/clock": "^7.4.8",
"symfony/console": "^7.4.8",
"symfony/doctrine-messenger": "^7.4.6",
"symfony/dotenv": "^7.4.8",
"symfony/expression-language": "^7.4.8",
"symfony/flex": "^2.10",
"symfony/form": "^7.4.8",
"symfony/framework-bundle": "^7.4.8",
"symfony/http-client": "^7.4.8",
"symfony/intl": "^7.4.8",
"symfony/mailer": "^7.4.8",
"symfony/mime": "^7.4.8",
"symfony/monolog-bundle": "^3.11.2",
"symfony/process": "^7.4.8",
"symfony/property-access": "^7.4.8",
"symfony/property-info": "^7.4.8",
"symfony/rate-limiter": "^7.4.8",
"symfony/runtime": "^7.4.8",
"symfony/scheduler": ">=7.4.8",
"symfony/security-bundle": "^7.4.8",
"symfony/serializer": "^7.4.8",
"symfony/string": "^7.4.8",
"symfony/translation": "^7.4.8",
"symfony/twig-bundle": "^7.4.8",
"symfony/uid": "^7.4.8",
"symfony/validator": "^7.4.8",
"symfony/web-link": "^7.4.8",
"symfony/yaml": "^7.4.8",
"tecnickcom/tc-lib-barcode": "^2.4.30",
"tecnickcom/tcpdf": "^6.11.2",
"twig/extra-bundle": "^2.12|^3.24.0",
"twig/intl-extra": "^3.24.0",
"twig/twig": "^2.12|^3.24.0",
"vich/uploader-bundle": "^2.9.2",
"zenstruck/messenger-monitor-bundle": "^0.6.0"
},
"config": {
"allow-plugins": {
"php-http/discovery": true,
"symfony/flex": true,
"symfony/runtime": true,
"tbachert/spi": true
},
"bump-after-update": true,
"sort-packages": true
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"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": "*"
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd",
"importmap:install": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
]
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "^7.4"
}
},
"require-dev": {
"phpunit/phpunit": "^12.5.17",
"symfony/browser-kit": "^7.4.8",
"symfony/css-selector": "^7.4.8",
"symfony/debug-bundle": "^7.4.8",
"symfony/maker-bundle": "^1.67.0",
"symfony/stopwatch": "^7.4.8",
"symfony/web-profiler-bundle": "^7.4.8"
}
}