1
0
mirror of https://github.com/flextype/flextype.git synced 2025-08-08 14:16:46 +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();

View File

@@ -59,7 +59,8 @@
"middlewares/whoops": "^2.0",
"nette/neon": "^3.2",
"league/commonmark": "^2.0",
"siriusphp/upload": "^3.0"
"siriusphp/upload": "^3.0",
"symfony/console": "^5.3"
},
"suggest": {
"ext-zend-opcache": "Recommended for better performance",
@@ -76,6 +77,9 @@
"src/flextype/macros/macros.php"
]
},
"bin": [
"bin/flextype"
],
"require-dev": {
"doctrine/coding-standard": "9.0.0",
"pestphp/pest": "^1.12.0",