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:
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();
|
@@ -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",
|
||||
|
0
src/flextype/core/Console/EntriesCommand.php
Normal file
0
src/flextype/core/Console/EntriesCommand.php
Normal file
Reference in New Issue
Block a user