-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
56 lines (56 loc) · 1.41 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
{
"name": "lyucean/my_strength_bot",
"description": "The bot that makes you stronger",
"type": "library",
"authors": [
{
"name": "lyucean",
"email": "lyucean@gmail.com"
}
],
"license": "MIT",
"minimum-stability": "alpha",
"require": {
"php": "^8.2",
"ext-json": "*",
"ext-curl": "*",
"thingengineer/mysqli-database-class": "dev-master",
"ext-mbstring": "*",
"airbrake/phpbrake": "^0.7.3",
"lyucean/telegram_bot_php": "dev-forked",
"ext-iconv": "*",
"robmorgan/phinx": "^0.12.3",
"sentry/sdk": "^3.0@beta",
"sentry/sentry": "^3.0@beta",
"php-http/curl-client": "^2.1",
"vlucas/phpdotenv": "^5.1"
},
"autoload": {
"psr-4": {
"msb\\model\\": "model",
"msb\\core\\": "core",
"msb\\command\\": "command"
},
"files": [
"config.php",
"app/helper.php",
"app/error.php",
"app/metric.php"
]
},
"config": {
"optimize-autoloader": true,
"allow-plugins": {
"php-http/discovery": true
}
},
"require-dev": {
"phpunit/phpunit": "^9.0"
},
"repositories": {
"lyucean": {
"type": "vcs",
"url": "https://github.com/lyucean/telegram_bot_php"
}
}
}