Skip to content

Commit 3fa47d8

Browse files
committed
Version 0.42.0
Use correctly formatted API key in example, mirror core version number.
1 parent 3dc0b0c commit 3fa47d8

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
# PHP Telegram Bot Manager
22

3-
[![Scrutinizer Code Quality](https://img.shields.io/scrutinizer/g/noplanman/php-telegram-bot-manager.svg)](https://scrutinizer-ci.com/g/noplanman/php-telegram-bot-manager/?branch=master)
4-
[![Codecov](https://img.shields.io/codecov/c/github/noplanman/php-telegram-bot-manager.svg)](https://codecov.io/gh/noplanman/php-telegram-bot-manager)
5-
[![Build Status](https://img.shields.io/travis/noplanman/php-telegram-bot-manager.svg)](https://travis-ci.org/noplanman/php-telegram-bot-manager)
3+
[![Scrutinizer Code Quality](https://img.shields.io/scrutinizer/g/php-telegram-bot/telegram-bot-manager.svg)](https://scrutinizer-ci.com/g/php-telegram-bot/telegram-bot-manager/?branch=master)
4+
[![Codecov](https://img.shields.io/codecov/c/github/php-telegram-bot/telegram-bot-manager.svg)](https://codecov.io/gh/php-telegram-bot/telegram-bot-manager)
5+
[![Build Status](https://img.shields.io/travis/php-telegram-bot/telegram-bot-manager.svg)](https://travis-ci.org/php-telegram-bot/telegram-bot-manager)
66

77
[![Latest Stable Version](https://img.shields.io/packagist/v/noplanman/telegram-bot-manager.svg)](https://packagist.org/packages/noplanman/telegram-bot-manager)
88
[![Total Downloads](https://img.shields.io/packagist/dt/noplanman/telegram-bot-manager.svg)](https://packagist.org/packages/noplanman/telegram-bot-manager)
9-
[![License](https://img.shields.io/packagist/l/noplanman/telegram-bot-manager.svg)](https://github.com/noplanman/php-telegram-bot-manager/LICENSE.md)
9+
[![License](https://img.shields.io/packagist/l/noplanman/telegram-bot-manager.svg)](https://github.com/php-telegram-bot/telegram-bot-manager/LICENSE.md)
1010

11-
This project builds on top of [PHP Telegram Bot](https://github.com/akalongman/php-telegram-bot/) and as such, depends on it!
11+
This project builds on top of [PHP Telegram Bot](https://github.com/php-telegram-bot/core) and as such, depends on it!
1212

1313
The main purpose of this mini-library is to make the interaction between your webserver and Telegram easier.
14-
I strongly suggest your read the PHP Telegram Bot [instructions](https://github.com/noplanman/php-telegram-bot#instructions) first, to understand what this library does exactly.
14+
I strongly suggest your read the PHP Telegram Bot [instructions](https://github.com/php-telegram-bot/core#instructions) first, to understand what this library does exactly.
1515

1616
Installation and usage is pretty straight forward:
1717

@@ -20,7 +20,7 @@ Installation and usage is pretty straight forward:
2020
Either run this command in your command line:
2121

2222
```bash
23-
composer require noplanman/telegram-bot-manager:^0.4
23+
composer require noplanman/telegram-bot-manager:^0.42
2424
```
2525

2626
**or**
@@ -29,7 +29,7 @@ For existing Composer projects, edit your project's `composer.json` file to requ
2929

3030
```yaml
3131
"require": {
32-
"noplanman/telegram-bot-manager": "^0.4"
32+
"noplanman/telegram-bot-manager": "^0.42"
3333
}
3434
```
3535
and then run `composer update`
@@ -114,7 +114,7 @@ require __DIR__ . '/vendor/autoload.php';
114114
try {
115115
$bot = new BotManager([
116116
// Vitals!
117-
'api_key' => 'my_api_key',
117+
'api_key' => '12345:my_api_key',
118118
'botname' => 'my_own_bot',
119119
'secret' => 'super_secret',
120120

0 commit comments

Comments
 (0)