-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
140 lines (140 loc) · 4.48 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
133
134
135
136
137
138
139
140
{
"name": "bastien70/dbsaver",
"description": "Automate MySQL databases backups.",
"type": "project",
"license": "MIT",
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": ">=8.1",
"ext-ctype": "*",
"ext-iconv": "*",
"aws/aws-sdk-php": "^3.277.9",
"doctrine/doctrine-bundle": "^2.10.1",
"doctrine/doctrine-migrations-bundle": "^3.2.4",
"doctrine/orm": "^2.16.0",
"easycorp/easyadmin-bundle": "^4.7.1",
"endroid/qr-code": "^4.8.2",
"ifsnop/mysqldump-php": "^2.12",
"league/flysystem": "^3.15.1",
"league/flysystem-aws-s3-v3": "^3.15.0",
"league/flysystem-ftp": "^3.15",
"leapt/core-bundle": "^4.10",
"nzo/url-encryptor-bundle": "^6.2.7",
"phpdocumentor/reflection-docblock": "^5.3.0",
"scheb/2fa-backup-code": "^6.9",
"scheb/2fa-bundle": "^6.9",
"scheb/2fa-totp": "^6.9",
"scheb/2fa-trusted-device": "^6.9",
"sixlive/dotenv-editor": "^2.0.0",
"symfony/asset": "6.3.*",
"symfony/console": "6.3.*",
"symfony/dotenv": "6.3.*",
"symfony/expression-language": "6.3.*",
"symfony/flex": "^2.3.3",
"symfony/form": "6.3.*",
"symfony/framework-bundle": "6.3.*",
"symfony/http-client": "6.3.*",
"symfony/intl": "6.3.*",
"symfony/mailer": "6.3.*",
"symfony/monolog-bundle": "^3.8.0",
"symfony/process": "6.3.*",
"symfony/property-access": "6.3.*",
"symfony/property-info": "6.3.*",
"symfony/proxy-manager-bridge": "6.3.*",
"symfony/runtime": "6.3.*",
"symfony/security-bundle": "6.3.*",
"symfony/string": "6.3.*",
"symfony/translation": "6.3.*",
"symfony/twig-bundle": "6.3.*",
"symfony/validator": "6.3.*",
"symfony/yaml": "6.3.*",
"symfonycasts/reset-password-bundle": "^1.17",
"twig/cssinliner-extra": "^3.7.0",
"twig/extra-bundle": "^3.7.0",
"twig/inky-extra": "^3.7.0",
"twig/twig": "^3.7.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.22.0",
"phpstan/extension-installer": "^1.3.1",
"phpstan/phpstan": "^1.10.27",
"phpstan/phpstan-deprecation-rules": "^1.1.4",
"phpstan/phpstan-doctrine": "^1.3.40",
"phpstan/phpstan-phpunit": "^1.3.13",
"phpstan/phpstan-symfony": "^1.3.2",
"phpunit/phpunit": "^9.6.10",
"symfony/browser-kit": "6.3.*",
"symfony/css-selector": "6.3.*",
"symfony/debug-bundle": "6.3.*",
"symfony/maker-bundle": "^1.50",
"symfony/phpunit-bridge": "6.3.*",
"symfony/stopwatch": "6.3.*",
"symfony/var-dumper": "6.3.*",
"symfony/web-profiler-bundle": "6.3.*",
"zenstruck/foundry": "^1.34.1"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true,
"symfony/flex": true,
"symfony/runtime": true
}
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"replace": {
"symfony/polyfill-ctype": "*",
"symfony/polyfill-iconv": "*",
"symfony/polyfill-php81": "*",
"symfony/polyfill-php80": "*",
"symfony/polyfill-php74": "*",
"symfony/polyfill-php73": "*",
"symfony/polyfill-php72": "*"
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
],
"ci": [
"symfony console doctrine:schema:validate",
"@cs:dry",
"@phpstan",
"symfony console lint:container",
"symfony console lint:twig templates",
"symfony console lint:yaml config translations",
"composer audit"
],
"cs:dry": "php-cs-fixer fix --diff --dry-run --no-interaction",
"cs:fix": "php-cs-fixer fix",
"phpstan": "vendor/bin/phpstan analyse"
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "6.3.*"
}
}
}