-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
132 lines (132 loc) · 4.06 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
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
131
132
{
"name": "systemli/userli",
"type": "project",
"license": "AGPL-3.0-or-later",
"description": "Web application to (self-) manage email users and encrypt their mailboxes.",
"require": {
"php": "^8.2",
"ext-ctype": "*",
"ext-iconv": "*",
"ext-openssl": ">=7.1",
"ext-sodium": "^2.0 | >=7.2",
"doctrine/annotations": "*",
"doctrine/doctrine-bundle": "^2.7",
"doctrine/doctrine-fixtures-bundle": "~3.4",
"doctrine/orm": "^2.13",
"endroid/qr-code": "^5.0",
"ircmaxell/password-compat": "~1.0.3",
"knplabs/knp-menu-bundle": "^3.0",
"mopa/bootstrap-bundle": "~3.0",
"nelmio/security-bundle": "^3.0",
"pear/crypt_gpg": "^1.6",
"ramsey/uuid": "^4.1",
"scheb/2fa-backup-code": "^7.2.0",
"scheb/2fa-bundle": "^7.2.0",
"scheb/2fa-totp": "^7.2.0",
"sonata-project/admin-bundle": "^4.0",
"sonata-project/doctrine-orm-admin-bundle": "^4.0",
"symfony/apache-pack": "^1.0",
"symfony/console": "*",
"symfony/dotenv": "*",
"symfony/flex": "^1.1",
"symfony/form": "*",
"symfony/framework-bundle": "*",
"symfony/http-client": "6.4.*",
"symfony/mailer": "6.4.*",
"symfony/monolog-bundle": "^3.8.0",
"symfony/polyfill-apcu": "^1.0",
"symfony/process": "6.4.*",
"symfony/runtime": "6.4.*",
"symfony/security-bundle": "*",
"symfony/security-csrf": "*",
"symfony/translation": "*",
"symfony/twig-bundle": "6.4.*",
"symfony/validator": "*",
"symfony/yaml": "*",
"tuupola/base32": "^2.0",
"twbs/bootstrap": "~3.3.0"
},
"require-dev": {
"dg/bypass-finals": "^1.1",
"dvdoug/behat-code-coverage": "^5.3",
"friends-of-behat/mink": "^1.10",
"friends-of-behat/mink-browserkit-driver": "^1.6",
"friends-of-behat/mink-extension": "^2.7",
"friends-of-behat/symfony-extension": "^2.0",
"phpunit/phpunit": "^9.5",
"rector/rector": "^1.0.0",
"symfony/browser-kit": "6.4.*",
"symfony/css-selector": "6.4.*",
"symfony/debug-bundle": "*",
"symfony/phpunit-bridge": "*",
"symfony/stopwatch": "*",
"symfony/var-dumper": "6.4.*",
"symfony/web-profiler-bundle": "*"
},
"config": {
"bin-dir": "bin",
"component-dir": "public/components",
"component-baseurl": "/components",
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"platform": {
"php": "8.2.0"
},
"allow-plugins": {
"composer/package-versions-deprecated": true,
"symfony/flex": true,
"symfony/runtime": true
}
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"replace": {
"paragonie/random_compat": "2.*",
"symfony/polyfill-ctype": "*",
"symfony/polyfill-iconv": "*",
"symfony/polyfill-php71": "*",
"symfony/polyfill-php70": "*",
"symfony/polyfill-php56": "*"
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install --symlink --relative %PUBLIC_DIR%": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
]
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "6.4.*"
},
"symfony-app-dir": "app",
"symfony-bin-dir": "bin",
"symfony-var-dir": "var",
"symfony-web-dir": "public",
"symfony-assets-install": "relative",
"incenteev-parameters": {
"file": "app/config/parameters.yml"
}
},
"prefer-stable": true
}