application.php 741 B

12345678910111213141516171819202122232425
  1. <?php
  2. require __DIR__ . '/vendor/autoload.php';
  3. Dotenv\Dotenv::createImmutable(__DIR__)->load();
  4. $application = new Symfony\Component\Console\Application;
  5. $application->add(new App\Commands\Select1Command);
  6. $application->add(new App\Commands\WhoAmICommand);
  7. $application->add(new App\Commands\ListEndpointsCommand);
  8. $application->add(new App\Commands\MakeDirectoryCommand);
  9. $application->add(new App\Commands\ListDirectoryCommand);
  10. $application->add(new App\Commands\RemoveDirectoryCommand);
  11. $application->add(new App\Commands\CreateTableCommand);
  12. $application->add(new App\Commands\SelectCommand);
  13. $application->add(new App\Commands\ReadTableCommand);
  14. $application->add(new App\Commands\BasicExampleCommand);
  15. $application->run();