forked from skrtdev/NovaGram
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 1004 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":"skrtdev/novagram",
"description":"An Object-Oriented PHP Library for Telegram Bots",
"license":"MIT",
"authors":[
{
"name":"Gaetano Sutera",
"email":"[email protected]",
"role":"Developer"
}
],
"require":{
"php":">=7.4",
"ext-json":"*",
"ext-curl":"*",
"skrtdev/async":"^1.0",
"monolog/monolog":"^2.1",
"symfony/polyfill-php80": "^1.22"
},
"suggest": {
"ext-mbstring":"Needed to use the built-in Telegram Entites Parser",
"ext-pdo":"Needed to use the built-in Database",
"ext-pcntl":"Needed to process updates with multi-processing"
},
"autoload": {
"psr-4":{
"skrtdev\\Telegram\\": ["src/Telegram/Types", "src/Telegram/Exceptions"],
"skrtdev\\": "src/"
},
"classmap":[
"src/bc"
],
"files":[
"src/NovaGram/helpers.php"
]
}
}