renommer scripts
This commit is contained in:
parent
5e01a69572
commit
0b8c39a35c
@ -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();
|
@ -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();
|
@ -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();
|
@ -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",
|
||||
|
@ -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);
|
||||
}
|
||||
|
||||
|
@ -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",
|
@ -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",
|
@ -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",
|
Loading…
x
Reference in New Issue
Block a user