mirror of
https://github.com/standardebooks/web.git
synced 2025-07-10 00:30:28 -04:00
15 lines
348 B
PHP
Executable file
15 lines
348 B
PHP
Executable file
#!/usr/bin/env php
|
|
<?php
|
|
// application.php
|
|
|
|
require __DIR__.'/vendor/autoload.php';
|
|
|
|
use Safe\GenerateCommand;
|
|
use Safe\ScanObjectsCommand;
|
|
use Symfony\Component\Console\Application;
|
|
|
|
$application = new Application();
|
|
$application->addCommands([new GenerateCommand()]);
|
|
$application->addCommands([new ScanObjectsCommand()]);
|
|
|
|
$application->run();
|