Skip to content

Commit

Permalink
Merge pull request #6 from setiawanhu/dev
Browse files Browse the repository at this point in the history
Adding support for Laravel 8
  • Loading branch information
setiawanhu authored Oct 12, 2020
2 parents d0c6af0 + 4333fa5 commit 6536384
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/vendor
composer.lock
/phpunit.xml
.phpunit.result.cache
11 changes: 8 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,17 @@
"email": "[email protected]"
}
],
"keywords": [
"laravel",
"telegram",
"madeline-proto"
],
"require": {
"php": "^7.4",
"danog/madelineproto": "^5.1",
"illuminate/support": "^7.0",
"illuminate/console": "^7.0",
"illuminate/database": "^7.0"
"illuminate/support": "^7.0|^8.0",
"illuminate/console": "^7.0|^8.0",
"illuminate/database": "^7.0|^8.0"
},
"autoload": {
"psr-4": {
Expand Down
4 changes: 2 additions & 2 deletions config/telegram.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@

'app_info' => [

'api_id' => env('MP_TELEGRAM_API_ID'),
'api_id' => env('MP_TELEGRAM_API_ID', ''),

'api_hash' => env('MP_TELEGRAM_API_HASH'),
'api_hash' => env('MP_TELEGRAM_API_HASH', ''),

],
],
Expand Down

0 comments on commit 6536384

Please sign in to comment.