-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
38 lines (38 loc) · 1.03 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
{
"name": "muaath5/simple-bot-api",
"description": "Simple & Easy Telegram Bot API in PHP",
"type": "library",
"license": "GPL-3.0-only",
"readme": "./README.md",
"authors": [
{
"name": "Muaath Alqarni",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"docs": "https://Muaath5.github.io/SimpleBotAPI/",
"source": "https://github.com/Muaath5/SimpleBotAPI/issues/tree/",
"issues": "https://github.com/Muaath5/SimpleBotAPI/issues",
"chat": "https://t.me/Muaath_5"
},
"minimum-stability": "stable",
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"require": {
"ext-curl": "*"
},
"autoload": {
"psr-4": {
"SimpleBotAPI\\": "src/",
"SimpleBotAPI\\Exceptions\\": "src/Exceptions/",
"SimpleBotAPI\\Examples\\": "examples/"
}
},
"extra": {
"bot_api_version": "5.6"
}
}