-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1.01 KB
/
composer.json
File metadata and controls
42 lines (42 loc) · 1.01 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
{
"name": "botasis/tg-scraper",
"description": "Utility to scrape Telegram bot API documentation page and convert it into PHP classes, OpenAPI notation and more.",
"license": "MIT",
"version": "0.1.0",
"require": {
"php": ">=8.1",
"ext-json": "*",
"nette/php-generator": "^4.1",
"psr/log": "^1.1",
"symfony/console": "^6.0",
"symfony/yaml": "^6.0",
"yiisoft/injector": "^1.2"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"phpstan/phpstan": "^2",
"vimeo/psalm": "^6.8",
"friendsofphp/php-cs-fixer": "^3.34",
"erickskrauch/php-cs-fixer-custom-fixers": "^1.2",
"symfony/var-dumper": "^6.3"
},
"autoload": {
"psr-4": {
"Botasis\\TgScraper\\": "src/"
}
},
"bin": [
"bin/tgscraper"
],
"authors": [
{
"name": "Viktor Babanov",
"email": "viktorprogger@gmail.com",
"homepage": "https://viktorprogger.name",
"role": "Maintainer"
}
],
"support": {
"issues": "https://github.com/botasis/tg-scraper/issues"
}
}