-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
56 lines (56 loc) · 1.16 KB
/
composer.json
File metadata and controls
56 lines (56 loc) · 1.16 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
{
"name": "telegramsdk/botapi",
"description": "SDK for the Telegram Bot API.",
"keywords": [
"telegram",
"api",
"bot",
"library",
"TelegramSDK",
"SDK"
],
"homepage": "https://github.com/TelegramSDK/BotAPI",
"authors": [
{
"name": "Sebastiano Racca",
"email": "sebastiano@racca.me",
"role": "Developer",
"homepage": "https://github.com/SebaOfficial"
}
],
"type": "library",
"license": "MIT",
"autoload": {
"classmap": [
"src/"
]
},
"autoload-dev": {
"psr-4": {
"TelegramSDK\\BotAPI\\Tests\\": "tests/"
}
},
"scripts": {
"test": "@php vendor/bin/pest --fail-on-warning --profile",
"lint": "vendor/bin/php-cs-fixer fix ."
},
"require": {
"guzzlehttp/guzzle": "^7.7",
"php": ">=8.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.46",
"pestphp/pest": "^2.8"
},
"suggest": {
"telegramsdk/botkit": "This package provides additional features for your IDE."
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
},
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
}
}