domain-expiration/domain-expiration

12 lines
241 B
Plaintext
Executable File

#!/usr/bin/env php7.3
<?php
require __DIR__.'/vendor/autoload.php';
use Symfony\Component\Console\Application;
use Deblan\Command\CheckCommand;
$application = new Application();
$application->add(new CheckCommand());
$application->run();