register(); $phpbb_class_loader_ext = new \phpbb\class_loader('\\', "{$phpbb_root_path}ext/", $phpEx); $phpbb_class_loader_ext->register(); $phpbb_container = phpbb_create_update_container($phpbb_root_path, $phpEx, "$phpbb_root_path/config"); $application = new Application('phpBB Console', PHPBB_VERSION); foreach($phpbb_container->findTaggedServiceIds('console.command') as $id => $void) { $application->add($phpbb_container->get($id)); } $application->run();