Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/evmv/evmvtelegrambundle

Bundle for creating telegram bots
https://github.com/evmv/evmvtelegrambundle

bot bundle flexible php symfony telegram telegram-bot

Last synced: 9 days ago
JSON representation

Bundle for creating telegram bots

Awesome Lists containing this project

README

        

## About
The bundle uses annotations, which allows you to create
flexible telegram bot systems.

## Install
Require the bundle and its dependencies with composer:
```bash
$ composer require evmv/telegram-bundle
```

Register the bundle:
```php
// config/bundles.php
return [
Evmv\TelegramBot\TelegramBundle::class => ['all' => true]
];
```

Add your bot key to .env:
```dotenv
BOT_KEY=your_telegram_bot_key
```

And add route to config/routes.yaml:
```yaml
telegram:
path: /handle
controller: Evmv\TelegramBot\Controller\Handle::__invoke
```

## Usage ##
- [COMMAND](docs/COMMAND.md)
- [KEYBOARD](docs/KEYBOARD.md)
- [TEXT](docs/TEXT.md)
- [MIDDLEWARE](docs/MIDDLEWARE.md)
- [EVENT](docs/EVENT.md)

### How To Contribute
To contribute just open a Pull Request with your new code taking into account that if you add new features or modify existing ones you have to document in this README what they do. If you break BC then you have to document it as well.