Skip to content

Commit 1dc2db2

Browse files
committed
Update to PhpTelegrambot 0.77.0
1 parent aad43cc commit 1dc2db2

File tree

3 files changed

+18
-1
lines changed

3 files changed

+18
-1
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,3 +39,5 @@ Homestead.json
3939
_ide_*
4040

4141
# End of https://www.toptal.com/developers/gitignore/api/laravel,composer
42+
43+
/.idea

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"keywords": ["laravel", "telegram", "bot"],
1313
"require": {
1414
"illuminate/support": "~7|~8|~9",
15-
"longman/telegram-bot": "^0.76",
15+
"longman/telegram-bot": "^0.77",
1616
"ext-pcntl": "*"
1717
},
1818
"require-dev": {
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<?php
2+
3+
use Illuminate\Database\Migrations\Migration;
4+
5+
return new class extends Migration {
6+
public function up()
7+
{
8+
DB::unprepared(file_get_contents(__DIR__ . '/sql/0.76.1-0.77.0.sql'));
9+
}
10+
11+
public function down()
12+
{
13+
//
14+
}
15+
};

0 commit comments

Comments
 (0)