modif config files

pull/8/head
Majdi SFAXI 2016-12-21 13:23:32 +01:00
parent bb6935ad96
commit faba1386c8
3 changed files with 24 additions and 19 deletions

View File

@ -2,9 +2,18 @@
return [
'languages' => [
1 => 'Français',
2 => 'English',
3 => 'Deutsch'
'fr' => [
'index' => 1,
'label' => 'Français',
],
'en' => [
'index' => 2,
'label' => 'English',
],
'de' => [
'index' => 3,
'label' => 'Deutsch',
],
],
'defaultLanguageIndex' => 2
];

View File

@ -35,9 +35,18 @@ return array(
'languages' => [
1 => 'Français',
2 => 'English',
3 => 'Deutsch'
'fr' => [
'index' => 1,
'label' => 'Français',
],
'en' => [
'index' => 2,
'label' => 'English',
],
'de' => [
'index' => 3,
'label' => 'Deutsch',
],
],
'defaultLanguageIndex' => 1,

View File

@ -1,13 +0,0 @@
<?php
return [
'smtp' => [
'name' => 'mailtrap.io',
'host' => 'mailtrap.io',
'connection_class' => 'crammd5',
'connection_config' => [
'username' => '******',
'password' => '******',
],
]
];