1. Go to this page and download the library: Download dotkernel/dot-console library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
public function __invoke(RouteCollector $route, AdapterInterface $console)
use Dot\Console\Command\AbstractCommand;
use Laminas\Console\Adapter\AdapterInterface;
use Dot\Console\RouteCollector as Route;
class HelloCommand extends AbstractCommand
{
/**
* @param Route $route
* @param AdapterInterface $console
* @return int
*/
public function __invoke(Route $route, AdapterInterface $console)
{
$console->writeLine('Hello World Command');
return 0;
}
}