1
0
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:
Awilum
2021-08-22 18:13:05 +03:00
parent 3d8f8f5f44
commit d478c9c034
3 changed files with 17 additions and 1 deletions

12
bin/flextype Executable file
View 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();