Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/alexeevdv/yii2-telegram


https://github.com/alexeevdv/yii2-telegram

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

        

yii2-recaptcha-widget
=====================

Telegram component for Yii2.

## Installation

The preferred way to install this extension is through [composer](http://getcomposer.org/download/).

Either run

```
$ php composer.phar require alexeevdv/yii2-telegram "1.0.0"
```

or add

```
"alexeevdv/yii2-telegram": "1.0.0"
```

to the ```require``` section of your `composer.json` file.

## Configuration

### Through application component
```php
"components" => [
//...
"telegram" => [
"class" => "alexeevdv\telegram\Telegram",
"host" => "DAEMON_HOST",
"port" => "DAEMON_PORT"
],
//...
],
```