-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
42 lines (42 loc) · 1.13 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
{
"name": "mateodioev/tgbot",
"description": "Libreria para interactuar con los metodos de la api de bots de telegram",
"type": "library",
"license": "MIT",
"keywords": [
"telegram",
"bot",
"api",
"telegram-bot-api"
],
"autoload": {
"psr-4": {
"Mateodioev\\Bots\\Telegram\\": "src/"
}
},
"require": {
"php": ">=8.2",
"mateodioev/request": "^2.0",
"vlucas/phpdotenv": "^5.4",
"mateodioev/utils": "^1.1",
"ext-curl": "*",
"ext-fileinfo": "*",
"amphp/http-client": "v5.0.0-beta.10",
"amphp/file": "^3.0"
},
"require-dev": {
"mateodioev/php-easy-cli": "*",
"phpunit/phpunit": "^9.5"
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit --testdox tests/ --colors=always",
"test-report": "phpunit --testdox tests/ --colors=always --testdox-html docs/report.html",
"coverage": "phpunit --coverage-html docs/coverage --coverage-text --colors=always"
},
"minimum-stability": "beta"
}