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", "php": "^8.0",
"ext-json": "*", "ext-json": "*",
"ext-pdo": "*", "ext-pdo": "*",
"monarc/backoffice": "dev-feature/remove-db-abstract", "ext-openssl": "*",
"monarc/core": "dev-feature/remove-db-abstract as v2.12.6", "monarc/backoffice": "^2.13.1",
"monarc/core": "^2.13.1",
"laminas/laminas-mvc": "^3.1", "laminas/laminas-mvc": "^3.1",
"laminas/laminas-di": "^3.1", "laminas/laminas-di": "^3.1",
"laminas/laminas-permissions-rbac": "^3.0", "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. * credentials from accidentally being committed into version control.
*/ */
return array( $package_json = json_decode(file_get_contents('./package.json'), true);
'doctrine' => array(
'connection' => array( return [
'orm_default' => array( 'doctrine' => [
'params' => array( 'connection' => [
'orm_default' => [
'params' => [
'host' => 'localhost', 'host' => 'localhost',
'user' => 'root', 'user' => 'root',
'password' => 'password', 'password' => 'password',
'dbname' => 'monarc_common', 'dbname' => 'monarc_common',
), ],
), ],
'orm_cli' => array( 'orm_cli' => [
'params' => array( 'params' => [
'host' => 'localhost', 'host' => 'localhost',
'user' => 'root', 'user' => 'root',
'password' => 'password', 'password' => 'password',
'dbname' => 'monarc_master', 'dbname' => 'monarc_master',
), ],
), ],
), ],
), ],
/* Link with (ModuleCore) /* Link with (ModuleCore)
config['languages'] = [ 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 'ttl' => 20, // timeout
'salt' => '', // salt privé pour chiffrement pwd 'salt' => '', // salt privé pour chiffrement pwd
), ],
); ];

View File

@ -1,6 +1,6 @@
{ {
"name": "MONARC Back Office", "name": "MONARC Back Office",
"version": "2.12.6", "version": "2.13.1",
"description": "MONARC Back Office", "description": "MONARC Back Office",
"private": true, "private": true,
"repository": { "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: # # Use VBoxManage to customize the VM. For example to change memory:
vb.customize ["modifyvm", :id, "--memory", "2048"] 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 end
# #
# View the documentation for the provider you're using for more # View the documentation for the provider you're using for more