-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
37 lines (37 loc) · 872 Bytes
/
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
{
"name": "php-telegram-bot/fluent-keyboard",
"description": "Fluent Keyboard builder for ReplyKeyboardMarkup and InlineKeyboardMarkup.",
"keywords": ["telegram", "bot", "api", "fluent", "keyboard", "builder"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Tii",
"email": "mail@tii.one"
}
],
"minimum-stability": "stable",
"autoload": {
"files": [
"./src/helpers.php"
],
"psr-4": {
"PhpTelegramBot\\FluentKeyboard\\": "./src"
}
},
"require": {
"php": "^8.0"
},
"require-dev": {
"pestphp/pest": "^1.21",
"ext-json": "*"
},
"scripts": {
"test": "vendor/bin/pest"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}