2020-02-01 19:07:36 +01:00
|
|
|
{
|
2021-06-17 17:56:16 +02:00
|
|
|
"name": "sysbot/tgscraper",
|
2020-02-01 19:07:36 +01:00
|
|
|
"description": "Utility to extract scheme from Telegram Bot API webpage.",
|
2021-06-17 18:05:04 +02:00
|
|
|
"license": "LGPL-3.0-or-later",
|
2021-06-17 17:56:16 +02:00
|
|
|
"require": {
|
|
|
|
"php": ">=8.0",
|
|
|
|
"ext-json": "*",
|
2021-07-24 17:27:47 +02:00
|
|
|
"composer-runtime-api": "^2.0",
|
2022-04-15 23:33:46 +02:00
|
|
|
"guzzlehttp/guzzle": "^7.0",
|
|
|
|
"nette/php-generator": "^4.0",
|
2021-07-24 17:27:47 +02:00
|
|
|
"psr/log": "^1.1",
|
2022-04-15 23:33:46 +02:00
|
|
|
"symfony/console": "^6.0",
|
|
|
|
"symfony/yaml": "^6.0",
|
|
|
|
"voku/simple_html_dom": "^4.7"
|
2021-06-17 17:56:16 +02:00
|
|
|
},
|
2022-04-16 16:37:50 +02:00
|
|
|
"require-dev": {
|
|
|
|
"phpunit/phpunit": "^9.5",
|
|
|
|
"phpstan/phpstan": "^1.2",
|
|
|
|
"vimeo/psalm": "^4.15"
|
|
|
|
},
|
2021-08-23 13:12:50 +02:00
|
|
|
"suggest": {
|
|
|
|
"sysbot/tgscraper-cache": "To speed up schema fetching and generation."
|
|
|
|
},
|
2020-02-01 19:07:36 +01:00
|
|
|
"autoload": {
|
|
|
|
"psr-4": {
|
2021-06-17 17:56:16 +02:00
|
|
|
"TgScraper\\": "src/"
|
2020-02-01 19:07:36 +01:00
|
|
|
}
|
|
|
|
},
|
2022-04-15 23:33:46 +02:00
|
|
|
"autoload-dev": {
|
|
|
|
"psr-4": {
|
|
|
|
"TgScraper\\Tests\\": "tests/"
|
|
|
|
}
|
|
|
|
},
|
2021-06-17 17:56:16 +02:00
|
|
|
"bin": [
|
|
|
|
"bin/tgscraper"
|
|
|
|
],
|
2020-02-01 19:07:36 +01:00
|
|
|
"authors": [
|
|
|
|
{
|
|
|
|
"name": "sys-001",
|
2021-06-17 17:56:16 +02:00
|
|
|
"email": "sys@sys001.ml",
|
|
|
|
"homepage": "https://sys001.ml",
|
|
|
|
"role": "Developer"
|
2020-02-01 19:07:36 +01:00
|
|
|
}
|
2021-06-17 17:56:16 +02:00
|
|
|
],
|
|
|
|
"support": {
|
|
|
|
"issues": "https://github.com/Sysbot-org/tgscraper/issues"
|
|
|
|
}
|
2020-02-01 19:07:36 +01:00
|
|
|
}
|