Uodated the core and client packages.

pull/430/head
Ruslan Baidan 2022-03-08 12:59:30 +01:00
parent 9ed22f6f56
commit affa21fc88
No known key found for this signature in database
GPG Key ID: 4B7724C136BF1D89
5 changed files with 1143 additions and 1215 deletions

View File

@ -66,7 +66,10 @@
}
},
"config": {
"bin-dir": "bin/"
"bin-dir": "bin/",
"allow-plugins": {
"laminas/laminas-dependency-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true

2339
composer.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -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(

View File

@ -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'),
);

View File

@ -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'],