Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
vyuldashev committed Aug 27, 2018
1 parent 4dccbb8 commit dd8acbe
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
1 change: 1 addition & 0 deletions .php_cs
Expand Up @@ -2,6 +2,7 @@

$finder = PhpCsFixer\Finder::create()
->exclude('vendor')
->in(__DIR__.'/config')
->in(__DIR__.'/resources')
->in(__DIR__.'/src')
->in(__DIR__.'/tests')
Expand Down
28 changes: 27 additions & 1 deletion config/fondbot.php
@@ -1,9 +1,35 @@
<?php

declare(strict_types=1);

return [

/*
|--------------------------------------------------------------------------
| FondBot Channels
|--------------------------------------------------------------------------
|
| Here you may configure channels that will be used in your application.
| A default configuration has been added for each official drivers.
| You are free to add as many channels as you need.
|
*/

'channels' => [

'telegram' => [
'driver' => 'telegram',
'token' => env('TELEGRAM_TOKEN'),
],

'vk' => [
'driver' => 'vk',
'access_token' => env('VK_ACCESS_TOKEN'),
'confirmation_token' => env('VK_CONFIRMATION_TOKEN'),
'secret_key' => env('VK_SECRET_KEY'),
'group_id' => env('VK_GROUP_ID'),
],

],

];
];

0 comments on commit dd8acbe

Please sign in to comment.