-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
87 lines (87 loc) · 2.62 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
{
"autoload": {
"psr-4": {
"App\\": "src/",
"App\\Tests\\": "tests/"
}
},
"require": {
"ext-ctype": "*",
"ext-iconv": "*",
"ext-json" : "*",
"ext-gd": "*",
"beberlei/doctrineextensions": "^1.2",
"composer/package-versions-deprecated": "1.11.99.4",
"doctrine/doctrine-bundle": "^2.4",
"doctrine/doctrine-migrations-bundle": "^2.2",
"doctrine/orm": "^2.10",
"geoip2/geoip2": "~2.0",
"google/apiclient": "^2.0",
"google/cloud-datastore": "^1.5",
"google/cloud-logging": "^1.18",
"google/cloud-storage": "^1.25",
"guzzlehttp/guzzle": "^6.2",
"ramsey/uuid": "^3.5",
"symfony/browser-kit": "*",
"symfony/cache": "*",
"symfony/config": "*",
"symfony/console": "*",
"symfony/css-selector": "*",
"symfony/dotenv": "*",
"symfony/expression-language": "*",
"symfony/flex": "^1.3.1",
"symfony/form": "*",
"symfony/framework-bundle": "*",
"symfony/monolog-bundle": "^3.5",
"symfony/process": "*",
"symfony/proxy-manager-bridge": "*",
"symfony/security-bundle": "*",
"symfony/serializer": "*",
"symfony/translation": "*",
"symfony/twig-bridge": "*",
"symfony/twig-bundle": "*",
"symfony/validator": "*",
"symfony/webpack-encore-bundle": "^1.7",
"symfony/yaml": "*",
"twig/extra-bundle": "^2.12|^3.0",
"twig/twig": "^3.11",
"google/cloud-secret-manager": "^1.7",
"ext-mbstring": "*",
"mpdf/mpdf": "^8.1",
"qipsius/tcpdf-bundle": "^2.0",
"league/oauth2-client": "^2.7"
},
"config": {
"platform": {
"php": "8.1.17"
},
"allow-plugins": {
"phpstan/extension-installer": true,
"symfony/flex": true
}
},
"require-dev": {
"phpunit/phpunit": "^9",
"symfony/maker-bundle": "^1.15",
"phpstan/phpstan": "^1.3",
"phpstan/phpstan-symfony": "^1.0",
"phpstan/phpstan-doctrine": "^1.0",
"phpstan/extension-installer": "^1.1",
"symfony/stopwatch": "*",
"symfony/web-profiler-bundle": "*",
"dama/doctrine-test-bundle": "^6.7",
"friendsofphp/php-cs-fixer": "^3.14",
"rector/rector": "^0.17.1"
},
"extra": {
"symfony": {
"require": "5.4.*"
}
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
}
}
}