mirror of
https://github.com/flextype/flextype.git
synced 2025-08-09 14:46:53 +02:00
feat(console): initial code commit for flextype console app
This commit is contained in:
12
bin/flextype
Executable file
12
bin/flextype
Executable file
@@ -0,0 +1,12 @@
|
||||
#!/usr/bin/env php
|
||||
<?php declare(strict_types=1);
|
||||
|
||||
require __DIR__ . '/vendor/autoload.php';
|
||||
|
||||
use Symfony\Component\Console\Application;
|
||||
|
||||
$application = new Application();
|
||||
|
||||
// ... register commands
|
||||
|
||||
$application->run();
|
Reference in New Issue
Block a user