-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
74 lines (74 loc) · 1.95 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
{
"name": "yiisoft/app",
"type": "project",
"description": "Yii 3 application template",
"keywords": [
"yii3",
"app"
],
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"serve": "yii serve"
},
"require": {
"php": "^7.4|^8.0",
"botman/botman": "^2.6",
"botman/driver-telegram": "^1.6",
"guzzlehttp/guzzle": "^7.0",
"nyholm/psr7": "^1.3.0",
"yiisoft/aliases": "^1.0",
"yiisoft/cache": "@dev",
"yiisoft/cache-file": "@dev",
"yiisoft/composer-config-plugin": "^1.0@dev",
"yiisoft/di": "@dev",
"yiisoft/event-dispatcher": "^3.0@dev",
"yiisoft/log": "@dev",
"yiisoft/log-target-file": "@dev",
"yiisoft/router": "@dev",
"yiisoft/router-fastroute": "@dev",
"yiisoft/yii-web": "@dev"
},
"require-dev": {
"phpunit/phpunit": "^9.3",
"roave/security-advisories": "dev-master",
"yiisoft/yii-console": "^3.0@dev"
},
"autoload": {
"psr-4": {
"App\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
},
"config-plugin-output-dir": "runtime/build/config",
"config-plugin": {
"common": "config/common.php",
"params": [
"config/params.php",
"?config/params-local.php"
],
"web": [
"$common",
"config/web.php"
],
"providers": "config/providers.php",
"providers-web": [
"$providers",
"config/providers-web.php"
],
"routes": "config/routes.php",
"telegram-commands": "config/telegram/commands.php"
}
},
"config": {
"sort-packages": true
}
}