-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
149 lines (149 loc) · 4.27 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
141
142
143
144
145
146
147
148
149
{
"name": "4e-ecuador/website-bot",
"description": "A web site and a bot.",
"type": "project",
"license": "proprietary",
"require": {
"php": ">=8.2",
"ext-ctype": "*",
"ext-curl": "*",
"ext-dom": "*",
"ext-gd": "*",
"ext-iconv": "*",
"ext-intl": "*",
"ext-json": "*",
"ext-libxml": "*",
"boshurik/telegram-bot-bundle": "5.0.2",
"composer/package-versions-deprecated": "^1.0",
"doctrine/doctrine-bundle": "^2.4",
"doctrine/doctrine-fixtures-bundle": "^3.2",
"doctrine/doctrine-migrations-bundle": "^3.1",
"doctrine/orm": "^3",
"google/apiclient": "^2.13",
"knplabs/knp-time-bundle": "^2.0",
"knpuniversity/oauth2-client-bundle": "^2.0",
"league/csv": "^9.8",
"league/oauth2-google": "^4.0",
"michelf/php-markdown": "^2.0",
"nelmio/cors-bundle": "^2.0",
"phpdocumentor/reflection-docblock": "^5.2",
"symfony/apache-pack": "^1.0",
"symfony/asset": "7.*",
"symfony/asset-mapper": "7.*",
"symfony/console": "7.*",
"symfony/dotenv": "7.*",
"symfony/expression-language": "7.*",
"symfony/flex": "^2.1",
"symfony/form": "7.*",
"symfony/framework-bundle": "7.*",
"symfony/google-mailer": "7.*",
"symfony/http-client": "7.*",
"symfony/intl": "7.*",
"symfony/mailer": "7.*",
"symfony/monolog-bundle": "^3.1",
"symfony/process": "7.*",
"symfony/property-access": "7.*",
"symfony/property-info": "7.*",
"symfony/proxy-manager-bridge": "6.*",
"symfony/runtime": "7.*",
"symfony/security-bundle": "7.*",
"symfony/serializer": "7.*",
"symfony/stimulus-bundle": "*",
"symfony/translation": "7.*",
"symfony/twig-bundle": "7.*",
"symfony/validator": "7.*",
"symfony/web-link": "7.*",
"symfony/yaml": "7.*",
"tattali/calendar-bundle": "^1.2",
"twig/cssinliner-extra": "^3.0",
"twig/extra-bundle": "^2.12|^3.0",
"twig/inky-extra": "^3.0",
"twig/string-extra": "^3.0",
"twig/twig": "^2.12|^3.0"
},
"require-dev": {
"elkuku/symfony-utils": "dev-master",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-doctrine": "^1.2",
"phpstan/phpstan-symfony": "^1.1",
"phpunit/phpunit": "^11",
"rector/rector": "^1.0",
"roave/security-advisories": "dev-latest",
"symfony/browser-kit": "7.*",
"symfony/css-selector": "7.*",
"symfony/debug-bundle": "7.*",
"symfony/maker-bundle": "^1.0",
"symfony/phpunit-bridge": "7.*",
"symfony/stopwatch": "7.*",
"symfony/web-profiler-bundle": "7.*",
"tomasvotruba/cognitive-complexity": "^0.2"
},
"config": {
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"symfony/flex": true,
"symfony/runtime": true,
"phpstan/extension-installer": 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-php72": "*",
"symfony/polyfill-php71": "*",
"symfony/polyfill-php70": "*",
"symfony/polyfill-php56": "*"
},
"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"
],
"translate": [
"@translate-all"
],
"translate-all": {
"en": "./bin/console translation:extract --format=yaml --force en --domain=messages",
"es": "./bin/console translation:extract --format=yaml --force es --domain=messages",
"de": "./bin/console translation:extract --format=yaml --force de --domain=messages"
},
"test-phpunit": ["make tests"],
"test-phpstan": ["vendor/bin/phpstan analyse"],
"test-phpstan-baseline": ["vendor/bin/phpstan analyse --generate-baseline"],
"ci": ["@test-phpunit", "@test-phpstan"]
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": true,
"require": "7.*",
"docker": true
}
}
}