Uodated the core and client packages.
parent
9ed22f6f56
commit
affa21fc88
|
@ -66,7 +66,10 @@
|
|||
}
|
||||
},
|
||||
"config": {
|
||||
"bin-dir": "bin/"
|
||||
"bin-dir": "bin/",
|
||||
"allow-plugins": {
|
||||
"laminas/laminas-dependency-plugin": true
|
||||
}
|
||||
},
|
||||
"minimum-stability": "dev",
|
||||
"prefer-stable": true
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -11,15 +11,15 @@
|
|||
* file.
|
||||
*/
|
||||
|
||||
use Doctrine\DBAL\Driver\PDOMySql\Driver;
|
||||
use Doctrine\DBAL\Driver\PDO\MySql\Driver;
|
||||
use Monarc\Core\Service\DoctrineCacheServiceFactory;
|
||||
use Monarc\Core\Service\DoctrineLoggerFactory;
|
||||
|
||||
$appconfdir = getenv('APP_CONF_DIR') ?? '';
|
||||
|
||||
$datapath = "data";
|
||||
if( ! empty($appconfdir) ){
|
||||
$datapath = $appconfdir.'/data';
|
||||
if (!empty($appconfdir)) {
|
||||
$datapath = $appconfdir . '/data';
|
||||
}
|
||||
|
||||
return array(
|
||||
|
|
|
@ -39,5 +39,5 @@ return array(
|
|||
]
|
||||
*/
|
||||
|
||||
'activeLanguages' => array('fr','en','de','nl','es','ro','it','ja','pl','pt','ru','zh'),
|
||||
'activeLanguages' => array('fr','en','de','nl','es','ro','it','ja','pl','pt','zh'),
|
||||
);
|
||||
|
|
|
@ -63,10 +63,6 @@ return [
|
|||
'index' => 7,
|
||||
'label' => 'Italian',
|
||||
],
|
||||
'ru' => [
|
||||
'index' => 8,
|
||||
'label' => 'Russian',
|
||||
],
|
||||
'pt' => [
|
||||
'index' => 9,
|
||||
'label' => 'Portuguese',
|
||||
|
@ -87,7 +83,7 @@ return [
|
|||
|
||||
'defaultLanguageIndex' => 1,
|
||||
|
||||
'activeLanguages' => array('fr','en','de','nl','es','ro','it','ja','pl','pt','ru','zh'),
|
||||
'activeLanguages' => array('fr','en','de','nl','es','ro','it','ja','pl','pt','zh'),
|
||||
|
||||
'appVersion' => $package_json['version'],
|
||||
|
||||
|
|
Loading…
Reference in New Issue