Console Executions #
Add file bin/cron.php with content:
<?php
declare(strict_types=1);
use Symfony\Component\Console\Input\ArgvInput;
use Symfony\Component\Console\Output\ConsoleOutput;
require __DIR__ . '/../vendor/autoload.php';
exit(
App\Bootstrap::boot()
->createContainer()
->getByType(Contributte\Console\Application::class)
->get('cron:run')
->run(new ArgvInput(), new ConsoleOutput())
);