Parcourir la source

Make analyze the default command

tags/v0.7.0
itismadness il y a 6 ans
Parent
révision
1456cd784b
2 fichiers modifiés avec 6 ajouts et 2 suppressions
  1. +1
    -1
      composer.json
  2. +5
    -1
      src/LogcheckerConsole.php

+ 1
- 1
composer.json Voir le fichier

@@ -1,7 +1,7 @@
{
"name": "orpheusnet/logchecker",
"description": "Logchecker for validating logs generated from supported ripping programs (like EAC and XLD)",
"version": "0.5.0",
"version": "0.7.0",
"license": "Unlicense",
"type": "library",
"authors": [


+ 5
- 1
src/LogcheckerConsole.php Voir le fichier

@@ -13,8 +13,12 @@ class LogcheckerConsole extends Application {

parent::__construct('Logchecker by Orpheus', $version);

$analyze_command = new Command\AnalyzeCommand();

$this->addCommands([
new Command\AnalyzeCommand()
$analyze_command
]);

$this->setDefaultCommand($analyze_command->getName());
}
}

Chargement…
Annuler
Enregistrer