Created the console application via a factory

This commit is contained in:
Alejandro Celaya
2016-07-05 23:25:39 +02:00
parent 9ce5e255f1
commit 96478f3400
6 changed files with 64 additions and 14 deletions

View File

@@ -0,0 +1,13 @@
<?php
use Acelaya\UrlShortener\CLI\Command;
return [
'cli' => [
'commands' => [
Command\GenerateShortcodeCommand::class,
Command\ResolveUrlCommand::class,
]
],
];