12 lines
241 B
PHP
Executable file
12 lines
241 B
PHP
Executable file
#!/usr/bin/env php
|
|
<?php
|
|
|
|
namespace DSiepmann;
|
|
|
|
require __DIR__ . '/vendor/autoload.php';
|
|
|
|
use Symfony\Component\Console\Application;
|
|
|
|
$application = new Application();
|
|
$application->add(new Command\FakeMysqlCommand());
|
|
$application->run();
|