18 lines
453 B
PHP
18 lines
453 B
PHP
<?php
|
|
|
|
include_once 'vendor/autoload.php';
|
|
|
|
use Krzysiej\RyobiCrawler\Kernel;
|
|
use Symfony\Bundle\FrameworkBundle\Console\Application;
|
|
|
|
if (php_sapi_name() !== 'cli') {
|
|
header('Location: browser.php');
|
|
echo 'Execute this script in cli only';
|
|
exit;
|
|
}
|
|
$kernel = new Kernel('dev', true);
|
|
$application = new Application($kernel);
|
|
$application->setName('Ryobi website scraper application');
|
|
$application->setVersion('1.2.0');
|
|
$application->run();
|