Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alexeevdv/yii2-telegram
https://github.com/alexeevdv/yii2-telegram
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/alexeevdv/yii2-telegram
- Owner: alexeevdv
- Created: 2017-03-24T07:04:58.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-03-24T07:18:49.000Z (almost 8 years ago)
- Last Synced: 2024-10-23T12:24:17.095Z (3 months ago)
- Language: PHP
- Size: 1000 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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"
],
//...
],
```