Commit 6c3e463e authored by Armando Lüscher's avatar Armando Lüscher Committed by GitHub

Merge pull request #462 from noplanman/update_organisation_repo_links

Update organisation links.
parents a604aa67 2a743585
# Changelog
The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).
## [Unreleased]
### Changed
- All links point to new organisation repo.
## [0.42.0] - 2017-04-09
### Added
- Added `getBotId()` to directly access bot ID.
### Changed
- Rename `bot_name` to `bot_username` everywhere.
### Deprecated
- Deprecated `getBotName()` (Use `getBotUsername()` instead).
- Deprecated `getBotName()` (Use `getBotUsername()` instead).
### Fixed
- Tests are more reliable now, using a properly formatted API key.
......@@ -48,7 +52,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
- New `switch_inline_query_current_chat` option for inline keyboard.
- Support for `channel_post` and `edited_channel_post`.
- New alias `deleteWebhook` (for `unsetWebhook`).
### Changed
### Changed
- Update WebhookInfo entity and `setWebhook` to allow passing of new arguments.
## [0.37.1] - 2016-12-24
......
......@@ -2,14 +2,14 @@
[![Join the bot support group on Telegram](https://img.shields.io/badge/telegram-@PHP__Telegram__Bot__Support-32a2da.svg)](https://telegram.me/PHP_Telegram_Bot_Support)
[![Build Status](https://travis-ci.org/akalongman/php-telegram-bot.svg?branch=master)](https://travis-ci.org/akalongman/php-telegram-bot)
[![Code Coverage](https://img.shields.io/scrutinizer/coverage/g/akalongman/php-telegram-bot/develop.svg?style=flat-square)](https://scrutinizer-ci.com/g/akalongman/php-telegram-bot/?b=develop)
[![Code Quality](https://img.shields.io/scrutinizer/g/akalongman/php-telegram-bot/develop.svg?style=flat-square)](https://scrutinizer-ci.com/g/akalongman/php-telegram-bot/?b=develop)
[![Build Status](https://travis-ci.org/php-telegram-bot/core.svg?branch=master)](https://travis-ci.org/php-telegram-bot/core)
[![Code Coverage](https://img.shields.io/scrutinizer/coverage/g/php-telegram-bot/core/develop.svg?style=flat-square)](https://scrutinizer-ci.com/g/php-telegram-bot/core/?b=develop)
[![Code Quality](https://img.shields.io/scrutinizer/g/php-telegram-bot/core/develop.svg?style=flat-square)](https://scrutinizer-ci.com/g/php-telegram-bot/core/?b=develop)
[![Latest Stable Version](https://img.shields.io/packagist/v/Longman/telegram-bot.svg)](https://packagist.org/packages/longman/telegram-bot)
[![Total Downloads](https://img.shields.io/packagist/dt/Longman/telegram-bot.svg)](https://packagist.org/packages/longman/telegram-bot)
[![Downloads Month](https://img.shields.io/packagist/dm/Longman/telegram-bot.svg)](https://packagist.org/packages/longman/telegram-bot)
[![Minimum PHP Version](http://img.shields.io/badge/php-%3E%3D5.5.0-8892BF.svg)](https://php.net/)
[![License](https://img.shields.io/packagist/l/Longman/telegram-bot.svg)](https://github.com/akalongman/php-telegram-bot/LICENSE.md)
[![License](https://img.shields.io/packagist/l/Longman/telegram-bot.svg)](https://github.com/php-telegram-bot/core/LICENSE.md)
......@@ -83,7 +83,7 @@ The Bot can:
-----
This code is available on
[Github](https://github.com/akalongman/php-telegram-bot). Pull requests are welcome.
[Github](https://github.com/php-telegram-bot/core). Pull requests are welcome.
## Instructions
......@@ -424,7 +424,7 @@ The following actions will be tracked:
In order to use the URL shortener you must include the class ```use Longman\TelegramBot\Botan;``` and call it like this:
```Botan::shortenUrl('https://github.com/akalongman/php-telegram-bot', $user_id);```
```Botan::shortenUrl('https://github.com/php-telegram-bot/core', $user_id);```
Shortened URLs are cached in the database (if MySQL storage is enabled).
......@@ -526,7 +526,7 @@ $telegram->setUploadPath('yourpath/Upload');
## Documentation
Take a look at the repo [Wiki](https://github.com/akalongman/php-telegram-bot/wiki) for further information and tutorials!
Take a look at the repo [Wiki](https://github.com/php-telegram-bot/core/wiki) for further information and tutorials!
Feel free to improve!
## Projects with this library
......@@ -537,7 +537,7 @@ Here's a list of projects that feats this library, feel free to add yours!
## Troubleshooting
If you like living on the edge, please report any bugs you find on the
[PHP Telegram Bot issues](https://github.com/akalongman/php-telegram-bot/issues) page.
[PHP Telegram Bot issues](https://github.com/php-telegram-bot/core/issues) page.
## Contributing
......
......@@ -4,10 +4,10 @@
"description": "PHP telegram bot",
"keywords": ["telegram", "bot", "api"],
"license": "MIT",
"homepage": "https://github.com/akalongman/php-telegram-bot",
"homepage": "https://github.com/php-telegram-bot/core",
"support": {
"issues": "https://github.com/akalongman/php-telegram-bot/issues",
"source": "https://github.com/akalongman/php-telegram-bot"
"issues": "https://github.com/php-telegram-bot/core/issues",
"source": "https://github.com/php-telegram-bot/core"
},
"authors": [
{
......
......@@ -42,7 +42,7 @@ class InlinekeyboardCommand extends UserCommand
['text' => 'inline current chat', 'switch_inline_query_current_chat' => $switch_element],
], [
['text' => 'callback', 'callback_data' => 'identifier'],
['text' => 'open url', 'url' => 'https://github.com/akalongman/php-telegram-bot'],
['text' => 'open url', 'url' => 'https://github.com/php-telegram-bot/core'],
]);
$data = [
......
......@@ -44,7 +44,7 @@ class MarkdownCommand extends UserCommand
preformatted code block
code block
```
[Best Telegram bot api!!](https://github.com/akalongman/php-telegram-bot)
[Best Telegram bot api!!](https://github.com/php-telegram-bot/core)
',
];
......
......@@ -40,7 +40,7 @@ class ShortenerCommand extends UserCommand
$data = [];
$data['chat_id'] = $chat_id;
$text = Botan::shortenUrl('https://github.com/akalongman/php-telegram-bot', $user_id);
$text = Botan::shortenUrl('https://github.com/php-telegram-bot/core', $user_id);
$data['text'] = $text;
......
......@@ -391,7 +391,7 @@ class Request
public static function getMe()
{
// Added fake parameter, because of some cURL version failed POST request without parameters
// see https://github.com/akalongman/php-telegram-bot/pull/228
// see https://github.com/php-telegram-bot/core/pull/228
return self::send('getMe', ['whoami']);
}
......
......@@ -19,7 +19,7 @@ use Longman\TelegramBot\Telegram;
* @author Avtandil Kikabidze <akalongman@gmail.com>
* @copyright Avtandil Kikabidze <akalongman@gmail.com>
* @license http://opensource.org/licenses/mit-license.php The MIT License (MIT)
* @link http://www.github.com/akalongman/php-telegram-bot
* @link https://github.com/php-telegram-bot/core
*/
class CommandTest extends TestCase
{
......
......@@ -18,7 +18,7 @@ use Longman\TelegramBot\Telegram;
* @author Avtandil Kikabidze <akalongman@gmail.com>
* @copyright Avtandil Kikabidze <akalongman@gmail.com>
* @license http://opensource.org/licenses/mit-license.php The MIT License (MIT)
* @link http://www.github.com/akalongman/php-telegram-bot
* @link https://github.com/php-telegram-bot/core
*/
class CommandTestCase extends TestCase
{
......
......@@ -18,7 +18,7 @@ use Longman\TelegramBot\Telegram;
* @author Avtandil Kikabidze <akalongman@gmail.com>
* @copyright Avtandil Kikabidze <akalongman@gmail.com>
* @license http://opensource.org/licenses/mit-license.php The MIT License (MIT)
* @link http://www.github.com/akalongman/php-telegram-bot
* @link https://github.com/php-telegram-bot/core
*/
class ConversationTest extends TestCase
{
......
......@@ -17,7 +17,7 @@ use Longman\TelegramBot\Entities\Audio;
* @author Baev Nikolay <gametester3d@gmail.com>
* @copyright Avtandil Kikabidze <akalongman@gmail.com>
* @license http://opensource.org/licenses/mit-license.php The MIT License (MIT)
* @link http://www.github.com/akalongman/php-telegram-bot
* @link https://github.com/php-telegram-bot/core
*/
class AudioTest extends TestCase
{
......
......@@ -15,7 +15,7 @@ namespace Longman\TelegramBot\Tests\Unit;
* @author Avtandil Kikabidze <akalongman@gmail.com>
* @copyright Avtandil Kikabidze <akalongman@gmail.com>
* @license http://opensource.org/licenses/mit-license.php The MIT License (MIT)
* @link http://www.github.com/akalongman/php-telegram-bot
* @link https://github.com/php-telegram-bot/core
*/
class ChatTest extends TestCase
{
......
......@@ -17,7 +17,7 @@ use Longman\TelegramBot\Entities\File;
* @author Baev Nikolay <gametester3d@gmail.com>
* @copyright Avtandil Kikabidze <akalongman@gmail.com>
* @license http://opensource.org/licenses/mit-license.php The MIT License (MIT)
* @link http://www.github.com/akalongman/php-telegram-bot
* @link https://github.com/php-telegram-bot/core
*/
class FileTest extends TestCase
{
......
......@@ -17,7 +17,7 @@ use Longman\TelegramBot\Entities\InlineKeyboardButton;
* @author Avtandil Kikabidze <akalongman@gmail.com>
* @copyright Avtandil Kikabidze <akalongman@gmail.com>
* @license http://opensource.org/licenses/mit-license.php The MIT License (MIT)
* @link http://www.github.com/akalongman/php-telegram-bot
* @link https://github.com/php-telegram-bot/core
*/
class InlineKeyboardButtonTest extends TestCase
{
......
......@@ -18,7 +18,7 @@ use Longman\TelegramBot\Entities\InlineKeyboardButton;
* @author Avtandil Kikabidze <akalongman@gmail.com>
* @copyright Avtandil Kikabidze <akalongman@gmail.com>
* @license http://opensource.org/licenses/mit-license.php The MIT License (MIT)
* @link http://www.github.com/akalongman/php-telegram-bot
* @link https://github.com/php-telegram-bot/core
*/
class InlineKeyboardTest extends TestCase
{
......
......@@ -17,7 +17,7 @@ use Longman\TelegramBot\Entities\KeyboardButton;
* @author Avtandil Kikabidze <akalongman@gmail.com>
* @copyright Avtandil Kikabidze <akalongman@gmail.com>
* @license http://opensource.org/licenses/mit-license.php The MIT License (MIT)
* @link http://www.github.com/akalongman/php-telegram-bot
* @link https://github.com/php-telegram-bot/core
*/
class KeyboardButtonTest extends TestCase
{
......
......@@ -18,7 +18,7 @@ use Longman\TelegramBot\Entities\KeyboardButton;
* @author Avtandil Kikabidze <akalongman@gmail.com>
* @copyright Avtandil Kikabidze <akalongman@gmail.com>
* @license http://opensource.org/licenses/mit-license.php The MIT License (MIT)
* @link http://www.github.com/akalongman/php-telegram-bot
* @link https://github.com/php-telegram-bot/core
*/
class KeyboardTest extends TestCase
{
......
......@@ -17,7 +17,7 @@ use Longman\TelegramBot\Entities\Location;
* @author Baev Nikolay <gametester3d@gmail.com>
* @copyright Avtandil Kikabidze <akalongman@gmail.com>
* @license http://opensource.org/licenses/mit-license.php The MIT License (MIT)
* @link http://www.github.com/akalongman/php-telegram-bot
* @link https://github.com/php-telegram-bot/core
*/
class LocationTest extends TestCase
{
......
......@@ -15,7 +15,7 @@ namespace Longman\TelegramBot\Tests\Unit;
* @author Avtandil Kikabidze <akalongman@gmail.com>
* @copyright Avtandil Kikabidze <akalongman@gmail.com>
* @license http://opensource.org/licenses/mit-license.php The MIT License (MIT)
* @link http://www.github.com/akalongman/php-telegram-bot
* @link https://github.com/php-telegram-bot/core
*/
class MessageTest extends TestCase
{
......
......@@ -17,7 +17,7 @@ use Longman\TelegramBot\Entities\Update;
* @author Avtandil Kikabidze <akalongman@gmail.com>
* @copyright Avtandil Kikabidze <akalongman@gmail.com>
* @license http://opensource.org/licenses/mit-license.php The MIT License (MIT)
* @link http://www.github.com/akalongman/php-telegram-bot
* @link https://github.com/php-telegram-bot/core
*/
class ReplyToMessageTest extends TestCase
{
......
......@@ -21,7 +21,7 @@ use Longman\TelegramBot\Request;
* @author Avtandil Kikabidze <akalongman@gmail.com>
* @copyright Avtandil Kikabidze <akalongman@gmail.com>
* @license http://opensource.org/licenses/mit-license.php The MIT License (MIT)
* @link http://www.github.com/akalongman/php-telegram-bot
* @link https://github.com/php-telegram-bot/core
*/
class ServerResponseTest extends TestCase
{
......
......@@ -17,7 +17,7 @@ use Longman\TelegramBot\Entities\Update;
* @author Avtandil Kikabidze <akalongman@gmail.com>
* @copyright Avtandil Kikabidze <akalongman@gmail.com>
* @license http://opensource.org/licenses/mit-license.php The MIT License (MIT)
* @link http://www.github.com/akalongman/php-telegram-bot
* @link https://github.com/php-telegram-bot/core
*/
class UpdateTest extends TestCase
{
......
......@@ -17,7 +17,7 @@ use Longman\TelegramBot\Entities\User;
* @author Avtandil Kikabidze <akalongman@gmail.com>
* @copyright Avtandil Kikabidze <akalongman@gmail.com>
* @license http://opensource.org/licenses/mit-license.php The MIT License (MIT)
* @link http://www.github.com/akalongman/php-telegram-bot
* @link https://github.com/php-telegram-bot/core
*/
class UserTest extends TestCase
{
......
......@@ -17,7 +17,7 @@ use Longman\TelegramBot\Entities\WebhookInfo;
* @author Baev Nikolay <gametester3d@gmail.com>
* @copyright Avtandil Kikabidze <akalongman@gmail.com>
* @license http://opensource.org/licenses/mit-license.php The MIT License (MIT)
* @link http://www.github.com/akalongman/php-telegram-bot
* @link https://github.com/php-telegram-bot/core
*/
class WebhookInfoTest extends TestCase
{
......
......@@ -19,7 +19,7 @@ use Monolog\Logger;
* @author Avtandil Kikabidze <akalongman@gmail.com>
* @copyright Avtandil Kikabidze <akalongman@gmail.com>
* @license http://opensource.org/licenses/mit-license.php The MIT License (MIT)
* @link http://www.github.com/akalongman/php-telegram-bot
* @link https://github.com/php-telegram-bot/core
*/
class TelegramLogTest extends TestCase
{
......
......@@ -17,7 +17,7 @@ use Longman\TelegramBot\Telegram;
* @author Avtandil Kikabidze <akalongman@gmail.com>
* @copyright Avtandil Kikabidze <akalongman@gmail.com>
* @license http://opensource.org/licenses/mit-license.php The MIT License (MIT)
* @link http://www.github.com/akalongman/php-telegram-bot
* @link https://github.com/php-telegram-bot/core
*/
class TelegramTest extends TestCase
{
......
......@@ -21,7 +21,7 @@ use Longman\TelegramBot\Entities\User;
* @author Avtandil Kikabidze <akalongman@gmail.com>
* @copyright Avtandil Kikabidze <akalongman@gmail.com>
* @license http://opensource.org/licenses/mit-license.php The MIT License (MIT)
* @link http://www.github.com/akalongman/php-telegram-bot
* @link https://github.com/php-telegram-bot/core
*/
class TestHelpers
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment