-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
127 lines (127 loc) · 3.88 KB
/
composer.json
File metadata and controls
127 lines (127 loc) · 3.88 KB
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
{
"name": "viktorprorgger/bot-template",
"type": "template",
"description": "Telegram bot template",
"keywords": [
"yii3",
"app",
"api",
"rest",
"telegram"
],
"homepage": "https://github.com/viktorprorgger/bot-template/",
"license": "BSD-3-Clause",
"support": {
"issues": "https://github.com/viktorprorgger/bot-template/issues?state=open",
"source": "https://github.com/viktorprorgger/bot-template"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.2",
"ext-apcu": "*",
"ext-pdo": "*",
"botasis/runtime": "~0.2",
"botasis/telegram-client": "~0.2",
"httpsoft/http-message": "^1.0",
"monolog/monolog": "^3.2",
"php-http/socket-client": "^2.1",
"psr/container": "^2.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0||^2.0",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0",
"ramsey/uuid": "^4.2",
"sentry/sdk": "^3.3",
"vishnubob/wait-for-it": "dev-master",
"yiisoft/aliases": "^3.0",
"yiisoft/arrays": "^3.0",
"yiisoft/cache": "^3.0",
"yiisoft/cache-apcu": "dev-master",
"yiisoft/config": "^1.1",
"yiisoft/data": "^1.0",
"yiisoft/data-response": "^2.0",
"yiisoft/di": "^1.2",
"yiisoft/error-handler": "^3.0",
"yiisoft/http": "^1.2",
"yiisoft/request-body-parser": "^1.1",
"yiisoft/request-model": "^1.0@dev",
"yiisoft/router": "^3.0",
"yiisoft/router-fastroute": "^3.0",
"yiisoft/yii-console": "^2.0",
"yiisoft/yii-cycle": "2.0.x-dev",
"yiisoft/yii-event": "^2.0",
"yiisoft/yii-http": "^1.0",
"yiisoft/yii-queue": "3.0.x-dev",
"yiisoft/yii-queue-amqp": "3.0.x-dev",
"yiisoft/yii-runner-console": "^2.0",
"yiisoft/yii-runner-roadrunner": "^2.0",
"yiisoft/yii-sentry": "^2.0"
},
"require-dev": {
"infection/infection": "^0.26",
"maglnet/composer-require-checker": "^4.5",
"phpunit/phpunit": "^10.0",
"psalm/attributes": "^0.1.0",
"roave/infection-static-analysis-plugin": "^1.28",
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "^3.7",
"symfony/var-dumper": "^v6.2",
"v.chetkov/php-clean-architecture": "^0.1.0",
"vimeo/psalm": "^5.4"
},
"autoload": {
"psr-4": {
"Bot\\": "src",
"Bot\\Migration\\": "migrations"
}
},
"autoload-dev": {
"psr-4": {
"Yiisoft\\Inform\\Test\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
},
"config-plugin-options": {
"source-directory": "config"
},
"config-plugin": {
"di": "common.php",
"params": "params.php",
"di-web": [
"$di",
"web.php"
],
"di-console": [
"$di",
"console.php"
],
"routes": "routes.php",
"events": "events.php",
"delegates-console": "$delegates",
"delegates-web": "$delegates",
"providers-web": "providers-web.php",
"bootstrap-console": "bootstrap-console.php",
"bootstrap-web": "bootstrap-web.php"
},
"config-plugin-environments": {
"dev": {
"params": "params-dev.php"
},
"prod": {
"params": "params-prod.php"
}
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"yiisoft/config": true,
"infection/extension-installer": true,
"php-http/discovery": true
}
}
}