forked from Postuf/telegram-osint-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 920 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
38
{
"name": "postuf/telegram-api-lib",
"description": "Telegram scenario-based API aimed at OSINT",
"homepage": "https://github.com/Postuf/telegram-osint-lib",
"license": "MIT",
"type": "library",
"require-dev": {
"phpunit/phpunit": "^9.0"
},
"require": {
"phpseclib/phpseclib": "^2.0",
"ext-dom": "*",
"ext-gmp": "*",
"ext-json": "*",
"ext-openssl": "*",
"ext-sockets": "*",
"ext-xml": "*",
"ext-zlib": "*",
"postuf/socks-proxy-async": "0.1.14"
},
"autoload": {
"psr-4": {
"TelegramOSINT\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"": ["tests/", "examples/"]
}
},
"prefer-stable": true,
"repositories": [
{
"type": "vcs",
"url": "https://github.com/Postuf/SocksProxyAsync"
}
]
}