php-mysql-faker/app

13 lines
241 B
Plaintext
Raw Normal View History

2017-02-03 16:42:19 +01:00
#!/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();