php-telegram-bot / laravel

Laravel package for PHP Telegram Bot Library
Other
171 stars 51 forks source link

Update package to fix Monolog version problem. #12

Closed littpi-zz closed 4 years ago

littpi-zz commented 4 years ago

Fix #11.

sitenzo commented 4 years ago

How to install this fix. when i want to install i get following error

image

noplanman commented 4 years ago

@sitenzo Make sure you use version 0.61 and above :+1:

sitenzo commented 4 years ago

@noplanman How can i use 0.61, in my composer i have "php-telegram-bot/laravel": "^1.1.1" there is no update available and i'm on version 0.60 see my settings in issue #548473794

noplanman commented 4 years ago

@sitenzo To define a specific version to be used you can use the following in your composer.json:

"require": {
    "php-telegram-bot/laravel": "^1.1.1",
    "longman/telegram-bot": "0.61 as 0.60"
}

This will tell composer to use version 0.61 in place of 0.60.

I'll upate this by default with the next release 👍