18 lines
368 B
PHP
Executable File
18 lines
368 B
PHP
Executable File
#!/usr/bin/env php
|
|
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: eric
|
|
* Date: 12/20/16
|
|
* Time: 8:26 AM
|
|
*/
|
|
|
|
use Symfony\Component\Console\Application;
|
|
|
|
require __DIR__ . '/../vendor/autoload.php';
|
|
define('BASE_DIR', __DIR__ . '/../');
|
|
$app = new Application('Selenium tests', '0.0.1');
|
|
|
|
$app->add(new Sikofitt\Console\Command\TorBrowserDownloadCommand());
|
|
|
|
$app->run(); |