-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
103 lines (103 loc) · 3.12 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
100
101
102
103
{
"type": "project",
"license": "proprietary",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.3",
"ext-ctype": "*",
"ext-dom": "*",
"ext-fileinfo": "*",
"ext-iconv": "*",
"ext-libxml": "*",
"ext-mbstring": "*",
"ext-pdo": "*",
"ddeboer/imap": "@stable",
"doctrine/doctrine-bundle": "@stable",
"doctrine/doctrine-migrations-bundle": "@stable",
"doctrine/orm": "@stable",
"imagine/imagine": "*",
"stof/doctrine-extensions-bundle": "@stable",
"symfony/asset": "@stable",
"symfony/cache": "@stable",
"symfony/console": "@stable",
"symfony/dotenv": "@stable",
"symfony/expression-language": "@stable",
"symfony/flex": "@stable",
"symfony/form": "@stable",
"symfony/framework-bundle": "@stable",
"symfony/http-client": "@stable",
"symfony/mailer": "@stable",
"symfony/monolog-bundle": "@stable",
"symfony/runtime": "@stable",
"symfony/security-bundle": "@stable",
"symfony/twig-bundle": "@stable",
"symfony/validator": "@stable",
"symfony/webpack-encore-bundle": "@stable",
"symfony/yaml": "@stable",
"turbolabit/paginatorbundle": "dev-main",
"turbolabit/php-encryptor": "dev-main",
"turbolabit/php-symfony-basecommand": "dev-main",
"turbolabit/php-symfony-messenger": "dev-main",
"turbolabit/service-entity-plus-bundle": "dev-main",
"twig/cssinliner-extra": "@stable",
"twig/extra-bundle": "@stable",
"twig/inky-extra": "@stable",
"twig/twig": "@stable"
},
"config": {
"allow-plugins": {
"php-http/discovery": true,
"symfony/flex": true,
"symfony/runtime": 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"
}
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": "true",
"require": "@stable",
"docker": "false"
}
},
"require-dev": {
"phpstan/phpstan": "@stable",
"phpunit/phpunit": "@stable",
"rector/rector": "@stable",
"symfony/browser-kit": "@stable",
"symfony/css-selector": "@stable",
"symfony/debug-bundle": "@stable",
"symfony/maker-bundle": "@stable",
"symfony/phpunit-bridge": "@stable",
"symfony/stopwatch": "@stable",
"symfony/web-profiler-bundle": "@stable"
}
}