-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 919 Bytes
/
Copy pathcomposer.json
File metadata and controls
46 lines (46 loc) · 919 Bytes
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
{
"name": "telegramsdk/botkit",
"description": "TelegramSDK's BotKit",
"keywords": [
"telegram",
"api",
"bot",
"library",
"TelegramSDK",
"SDK",
"BotKit"
],
"homepage": "https://github.com/TelegramSDK/BotKit",
"authors": [
{
"name": "Sebastiano Racca",
"email": "sebastiano@racca.me",
"role": "Developer",
"homepage": "https://github.com/SebaOfficial"
}
],
"type": "library",
"license": "MIT",
"autoload": {
"classmap": [
"src/"
]
},
"scripts": {
"build": "php tools/generator.php",
"lint": "vendor/bin/php-cs-fixer fix ."
},
"require": {
"php": "^8.0",
"paquettg/php-html-parser": "^2.2",
"telegramsdk/botapi": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.46"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
}
}