renommer scripts

This commit is contained in:
Jephté Clain 2025-06-17 12:57:15 +04:00
parent 5e01a69572
commit 0b8c39a35c
8 changed files with 13 additions and 13 deletions

View File

@ -2,6 +2,6 @@
<?php
require $_composer_autoload_path?? __DIR__.'/../vendor/autoload.php';
use nulib\cli\StorageMysqlApp;
use nulib\cli\MysqlStorageApp;
StorageMysqlApp::run();
MysqlStorageApp::run();

View File

@ -2,6 +2,6 @@
<?php
require $_composer_autoload_path?? __DIR__.'/../vendor/autoload.php';
use nulib\cli\StoragePgsqlApp;
use nulib\cli\PgsqlStorageApp;
StoragePgsqlApp::run();
PgsqlStorageApp::run();

View File

@ -2,6 +2,6 @@
<?php
require $_composer_autoload_path?? __DIR__.'/../vendor/autoload.php';
use nulib\cli\StorageSqliteApp;
use nulib\cli\SqliteStorageApp;
StorageSqliteApp::run();
SqliteStorageApp::run();

View File

@ -83,9 +83,9 @@
"bin/csv2xlsx.php",
"bin/json2yml.php",
"bin/yml2json.php",
"bin/storage.sqlite.php",
"bin/storage.mysql.php",
"bin/storage.pgsql.php",
"bin/sqlite.storage.php",
"bin/mysql.storage.php",
"bin/pgsql.storage.php",
"nur_bin/compctl.php",
"nur_bin/compdep.php",
"nur_bin/datectl.php",

View File

@ -459,7 +459,7 @@ class app {
function getRunfile(): RunFile {
$name = $this->name;
$runfile = $this->getWorkfile($name);
$logfile = $this->getLogfile("$name.log", false);
$logfile = $this->getLogfile("$name.out", false);
return $this->runfile ??= new RunFile($name, $runfile, $logfile);
}

View File

@ -5,7 +5,7 @@ use nulib\A;
use nulib\db\mysql\MysqlStorage;
use nur\config;
class StorageMysqlApp extends AbstractStorageApp {
class MysqlStorageApp extends AbstractStorageApp {
const ARGS = [
"merge" => parent::ARGS,
"purpose" => "gestion d'un capacitor mysql",

View File

@ -5,7 +5,7 @@ use nulib\A;
use nulib\db\pgsql\PgsqlStorage;
use nur\config;
class StoragePgsqlApp extends AbstractStorageApp {
class PgsqlStorageApp extends AbstractStorageApp {
const ARGS = [
"merge" => parent::ARGS,
"purpose" => "gestion d'un capacitor pgsql",

View File

@ -4,7 +4,7 @@ namespace nulib\cli;
use nulib\A;
use nulib\db\sqlite\SqliteStorage;
class StorageSqliteApp extends AbstractStorageApp {
class SqliteStorageApp extends AbstractStorageApp {
const ARGS = [
"merge" => parent::ARGS,
"purpose" => "gestion d'un capacitor sqlite",