-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
100 lines (100 loc) · 2.57 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
{
"name": "devscast/telegram-notifier-bot",
"description": "Community Telegram Bot",
"type": "project",
"license": "proprietary",
"require": {
"php": ">=8.2",
"ext-ctype": "*",
"ext-curl": "*",
"ext-iconv": "*",
"ext-imap": "*",
"composer/package-versions-deprecated": "1.11.99.1",
"ddeboer/imap": "^1.14.0",
"doctrine/annotations": "^2.0",
"doctrine/dbal": "^3",
"doctrine/doctrine-bundle": "^2.12",
"doctrine/doctrine-migrations-bundle": "^3.3",
"doctrine/orm": "^2.19",
"knplabs/github-api": "^3.9",
"laminas/laminas-feed": "^2.20",
"laminas/laminas-http": "^2.18",
"nyholm/psr7": "^1.5.0",
"symfony/console": "7.1.*",
"symfony/css-selector": "7.1.*",
"symfony/dom-crawler": "7.1.*",
"symfony/dotenv": "7.1.*",
"symfony/flex": "*",
"symfony/framework-bundle": "7.1.*",
"symfony/http-client": "*",
"symfony/messenger": "7.1.*",
"symfony/notifier": "7.1.*",
"symfony/routing": "7.1.*",
"symfony/security-bundle": "7.1.*",
"symfony/twig-bundle": "7.1.*",
"symfony/yaml": "7.1.*",
"telegram-bot/api": "^v2.4.0",
"twig/extra-bundle": "^2.12|^3.0",
"twig/twig": "^2.12|^3.0"
},
"require-dev": {
"phpstan/phpstan": "^1.9",
"phpstan/phpstan-symfony": "^1.2",
"rector/rector": "^0.12.16",
"squizlabs/php_codesniffer": "^3.7",
"symfony/debug-bundle": "7.1.*",
"symfony/maker-bundle": "^1.48.0",
"symfony/stopwatch": "7.1.*",
"symfony/var-dumper": "7.1.*",
"symfony/web-profiler-bundle": "7.1.*",
"symplify/easy-coding-standard": "^11.1",
"vimeo/psalm": "^5.25"
},
"config": {
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"symfony/flex": true,
"php-http/discovery": true
}
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"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"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
]
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": true,
"require": "7.1.*"
}
}
}