Skip to content

Commit 298c504

Browse files
author
Tatiana
committed
version 5.12.60.0
2 parents ea8eb58 + 3d6a4d5 commit 298c504

File tree

92 files changed

+1551
-5733
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

92 files changed

+1551
-5733
lines changed

Diff for: .gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,5 @@ CalculateExtensions.php
1010
/.github/
1111
totum/ext/
1212
/Crypto.key
13+
/totum-front
14+
CLI.totum.php.ini

Diff for: Conf.php.default

-46
This file was deleted.

Diff for: bin/gomodule-test

7.96 MB
Binary file not shown.

Diff for: bin/totum

+7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
#!/usr/bin/env php
22
<?php
33

4+
$configIniFile = dirname(__FILE__).'/../CLI.totum.php.ini';
5+
6+
$configIni = parse_ini_file($configIniFile);
7+
foreach ($configIni as $key => $value) {
8+
ini_set($key, $value);
9+
}
10+
411
use totum\commands\CleanSchemasTmpTables;
512
use totum\commands\CleanSchemaTmpTables;
613
use totum\commands\CleanTmps;

Diff for: composer.json

+6-14
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
"description": "CRM, ERP and custom constructor",
44
"type": "project",
55
"require": {
6-
"php": "^8.0",
7-
"phpmailer/phpmailer": "~6.6.3",
6+
"php": "^8.3",
7+
"phpmailer/phpmailer": "~6.9.1",
88
"salsify/json-streaming-parser": "^8.2",
9-
"psr/http-message": "^1.0",
10-
"psr/log": "^1.1",
11-
"guzzlehttp/psr7": "^1.6",
12-
"symfony/console": "^4.4",
9+
"psr/http-message": "^2.0",
10+
"psr/log": "^3.0.0",
11+
"guzzlehttp/psr7": "^2.6.2",
12+
"symfony/console": "^v7.0.1",
1313
"ext-pdo": "*",
1414
"ext-json": "*",
1515
"ext-openssl": "*",
@@ -21,16 +21,8 @@
2121
"ext-gd": "*",
2222
"ext-zip": "*"
2323
},
24-
"repositories": [
25-
{
26-
"type": "github",
27-
"url": "https://github.com/totumonline/totum-front/"
28-
}
29-
],
3024
"require-dev": {
3125
"phpunit/phpunit": "^9.4",
32-
"friendsofphp/php-cs-fixer": "^3.0",
33-
"totumonline/totum-front": "dev-dev",
3426
"pheromone/phpcs-security-audit": "^2.0.1"
3527
},
3628
"autoload": {

0 commit comments

Comments
 (0)