generated from yiisoft/package-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
77 lines (77 loc) · 2.26 KB
/
composer.json
File metadata and controls
77 lines (77 loc) · 2.26 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
{
"name": "botasis/runtime",
"type": "library",
"description": "Bot runtime library to handle received updates",
"keywords": [],
"license": "BSD-3-Clause",
"support": {
"issues": "https://github.com/botasis/runtime/issues?state=open",
"chat": "https://t.me/viktorprogger_blog",
"source": "https://github.com/botasis/runtime"
},
"minimum-stability": "stable",
"require": {
"php": "~8.2||~8.3||~8.4",
"botasis/telegram-client": "^1.0",
"psr/container": "^2.0",
"psr/event-dispatcher": "^1.0",
"psr/log": "^1.0.0||^2.0.0||^3.0.0",
"symfony/deprecation-contracts": "^3.5",
"yiisoft/friendly-exception": "^1.1",
"yiisoft/injector": "^1.0"
},
"require-dev": {
"php-http/multipart-stream-builder": "^1.4",
"phpunit/phpunit": "^10.1",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.1",
"psr/http-message": "^2.0",
"roave/infection-static-analysis-plugin": "^1.16",
"shipmonk/composer-dependency-analyser": "^1.8",
"symfony/console": "^7.2",
"symfony/http-client": "^7.0",
"vimeo/psalm": "^6.8",
"yiisoft/definitions": "^3.3",
"yiisoft/test-support": "^3.0"
},
"suggest": {
"symfony/http-client": "^7.0",
"yiisoft/yii-console": "^2.0",
"yiisoft/yii-event": "^2.0"
},
"autoload": {
"psr-4": {
"Botasis\\Runtime\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Botasis\\Runtime\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"infection/extension-installer": true,
"composer/package-versions-deprecated": true,
"php-http/discovery": true
}
},
"scripts": {
"test": "phpunit --testdox --no-interaction"
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
},
"config-plugin-options": {
"source-directory": "config"
},
"config-plugin": {
"di": "common.php",
"params": "params.php",
"events-web": "events.php",
"events-console": "events.php"
}
}
}