PHP code example of sweetchuck / robo-nvm

1. Go to this page and download the library: Download sweetchuck/robo-nvm 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/ */

    

sweetchuck / robo-nvm example snippets




declare(strict_types = 1);

class RoboFile extends \Robo\Tasks
{
    use \Sweetchuck\Robo\Nvm\NvmTaskLoader;

    /**
     * @command nvm:list-local
     */
    public function nvmListLocal()
    {
        return $this
            ->collectionBuilder()
            ->addTask($this->taskNvmListLocal())
            ->addCode(function (\Robo\State\Data $data): int {
                $output = $this->output();
                $output->writeln(sprintf(
                    'Current node is: %s',
                    $data['nvm.listLocal.current'],
                ));

                $output->writeln('Available NodeJS versions:');
                foreach ($data['nvm.listLocal.versions'] as $value) {
                    $output->writeln("    $value");
                }

                return 0;
            });
    }
}




declare(strict_types = 1);

class RoboFile extends \Robo\Tasks
{
    use \Sweetchuck\Robo\Nvm\NvmTaskLoader;

    /**
     * @command nvm:which
     */
    public function nvmWhich()
    {
        return $this
            ->collectionBuilder()
            ->addTask($this->taskNvmWhich())
            ->addCode(function (\Robo\State\Data $data): int {
                $output = $this->output();
                $output->writeln(sprintf(
                    'nvm.which.nodeExecutable = %s',
                    $data['nvm.which.nodeExecutable'],
                ));
                $output->writeln(sprintf(
                    'nvm.which.binDir = %s',
                    $data['nvm.which.binDir'],
                ));

                return 0;
            });
    }
}