New release dependencies update.

feature/remove-db-abstract
Ruslan Baidan 2024-10-04 19:09:41 +02:00
parent abe81c2508
commit c9f0c07140
No known key found for this signature in database
GPG Key ID: 4B7724C136BF1D89
6 changed files with 218 additions and 216 deletions

View File

@ -1 +1 @@
{"major":2, "minor":12, "hotfix":6}
{"major":2, "minor":13, "hotfix":1}

View File

@ -43,8 +43,9 @@
"php": "^8.0",
"ext-json": "*",
"ext-pdo": "*",
"monarc/backoffice": "dev-feature/remove-db-abstract",
"monarc/core": "dev-feature/remove-db-abstract as v2.12.6",
"ext-openssl": "*",
"monarc/backoffice": "^2.13.1",
"monarc/core": "^2.13.1",
"laminas/laminas-mvc": "^3.1",
"laminas/laminas-di": "^3.1",
"laminas/laminas-permissions-rbac": "^3.0",

384
composer.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -11,27 +11,29 @@
* credentials from accidentally being committed into version control.
*/
return array(
'doctrine' => array(
'connection' => array(
'orm_default' => array(
'params' => array(
$package_json = json_decode(file_get_contents('./package.json'), true);
return [
'doctrine' => [
'connection' => [
'orm_default' => [
'params' => [
'host' => 'localhost',
'user' => 'root',
'password' => 'password',
'dbname' => 'monarc_common',
),
),
'orm_cli' => array(
'params' => array(
],
],
'orm_cli' => [
'params' => [
'host' => 'localhost',
'user' => 'root',
'password' => 'password',
'dbname' => 'monarc_master',
),
),
),
),
],
],
],
],
/* Link with (ModuleCore)
config['languages'] = [
@ -49,10 +51,13 @@ return array(
),
]
*/
'activeLanguages' => array('fr','en','de','nl'),
'monarc' => array(
'appVersion' => $package_json['version'],
'activeLanguages' => ['fr','en','de','nl'],
'monarc' => [
'ttl' => 20, // timeout
'salt' => '', // salt privé pour chiffrement pwd
),
);
],
];

View File

@ -1,6 +1,6 @@
{
"name": "MONARC Back Office",
"version": "2.12.6",
"version": "2.13.1",
"description": "MONARC Back Office",
"private": true,
"repository": {

2
vagrant/Vagrantfile vendored
View File

@ -55,7 +55,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
#
# # Use VBoxManage to customize the VM. For example to change memory:
vb.customize ["modifyvm", :id, "--memory", "2048"]
vb.customize ["modifyvm", :id, "--name", "MONARC BO - Ubuntu 22.04 - DEV"]
vb.customize ["modifyvm", :id, "--name", "MONARC BO - Ubuntu 22.04 - New"]
end
#
# View the documentation for the provider you're using for more