PHP code example of stolt / list-skills-command
1. Go to this page and download the library: Download stolt/list-skills-command 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/ */
stolt / list-skills-command example snippets
use Stolt\Console\Commands\ListSkillsCommand;
use Symfony\Component\Console\Application;
$application = new Application(
'your-cli-application-with-custom-boost-skills',
A_VERSION_NUMBER
);
# Actual command integration
$application->addCommand(new ListSkillsCommand());
$application->run();