Skip to content

Commit

Permalink
version 5.12.60.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Tatiana committed Sep 17, 2024
2 parents ea8eb58 + 3d6a4d5 commit 298c504
Show file tree
Hide file tree
Showing 92 changed files with 1,551 additions and 5,733 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,5 @@ CalculateExtensions.php
/.github/
totum/ext/
/Crypto.key
/totum-front
CLI.totum.php.ini
46 changes: 0 additions & 46 deletions Conf.php.default

This file was deleted.

Binary file added bin/gomodule-test
Binary file not shown.
7 changes: 7 additions & 0 deletions bin/totum
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
#!/usr/bin/env php
<?php

$configIniFile = dirname(__FILE__).'/../CLI.totum.php.ini';

$configIni = parse_ini_file($configIniFile);
foreach ($configIni as $key => $value) {
ini_set($key, $value);
}

use totum\commands\CleanSchemasTmpTables;
use totum\commands\CleanSchemaTmpTables;
use totum\commands\CleanTmps;
Expand Down
20 changes: 6 additions & 14 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
"description": "CRM, ERP and custom constructor",
"type": "project",
"require": {
"php": "^8.0",
"phpmailer/phpmailer": "~6.6.3",
"php": "^8.3",
"phpmailer/phpmailer": "~6.9.1",
"salsify/json-streaming-parser": "^8.2",
"psr/http-message": "^1.0",
"psr/log": "^1.1",
"guzzlehttp/psr7": "^1.6",
"symfony/console": "^4.4",
"psr/http-message": "^2.0",
"psr/log": "^3.0.0",
"guzzlehttp/psr7": "^2.6.2",
"symfony/console": "^v7.0.1",
"ext-pdo": "*",
"ext-json": "*",
"ext-openssl": "*",
Expand All @@ -21,16 +21,8 @@
"ext-gd": "*",
"ext-zip": "*"
},
"repositories": [
{
"type": "github",
"url": "https://github.com/totumonline/totum-front/"
}
],
"require-dev": {
"phpunit/phpunit": "^9.4",
"friendsofphp/php-cs-fixer": "^3.0",
"totumonline/totum-front": "dev-dev",
"pheromone/phpcs-security-audit": "^2.0.1"
},
"autoload": {
Expand Down
Loading

0 comments on commit 298c504

Please sign in to comment.