* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License * @link https://vufind.org Main Page */ require_once __DIR__ . '/../vendor/autoload.php'; use Symfony\Component\Console\Application; use VuFindHarvest\OaiPmh\HarvesterCommand; $command = new HarvesterCommand(); $application = new Application(); $application->add($command); $application->setDefaultCommand($command->getName(), true); return $application->run();