PHP code example of tyesty / console-bundle
1. Go to this page and download the library: Download tyesty/console-bundle 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/ */
tyesty / console-bundle example snippets
# Replace use Symfony\Bundle\FrameworkBundle\Console\Application; by this one
use Huttopia\ConsoleBundle\Application;
# Add this line before $input = new ArgvInput();
$allCommands = \Huttopia\ConsoleBundle\CommandOption\AllCommandsOption::parseAllCommandsOption($argv);
$input = new ArgvInput();
# Replace Application creation (it should be the last 2 lines of your bin/console)
// $application = new Application($kernel);
// $application->run($input);
(new Application($kernel))
->setAllCommands($allCommands)
->run($input);
# app/AppKernel.php
class AppKernel
{
public function registerBundles()
{
$bundles = [
new \Huttopia\ConsoleBundle\ConsoleBundle()
];
}
}
yaml
# config/bundles.php
return [
Huttopia\ConsoleBundle\ConsoleBundle::class => ['all' => true]
];