PHP code example of leafs / sprout

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

    

leafs / sprout example snippets


#!/usr/bin/env php


use Leaf\Sprout\Command;

 App',
    'version' => '1.0.0'
]);

$app->command('greet', function (Command $app) {
    $command->write('Hello, world!');
});

$app->register(\MyCliApp\Commands\GreetCommand::class);

$app->run();



namespace MyCliApp\Commands;

use Leaf\Sprout\Command;

class GreetCommand extends Command
{
    protected $signature = 'greet {name}';

    protected $description = 'Greet a user';

    public function handle()
    {
        $this->write("Hello, {$this->argument('name')}!");
    }
}

$app->register(\MyCliApp\Commands\GreetCommand::class);

$app->command('greet', function (Command $command) {
    $command->write(
        style()->apply('p-4 bg-green-300 text-white')->to('Hello') . ', world!'
    );
});

style()->success('Operation successful');
style()->error('Operation failed');

...

style()->pill('Operation successful');
style()->pill('Operation failed')->apply('bg-red-500 text-white');

...

style()->italic('This is italic text');
style()->bold('This is bold text');
style()->underline('This is underlined text');
style()->dim('This is dim text');
style()->strikethrough('This is strikethrough text');

style()->bold()->underline()->apply('text-red-500')->to('Hello, world!');

$name = sprout()->prompt([
    'type' => 'text', // 'select', 'confirm', 'password', 'number', 'text'
    'initial' => 'John Doe',
    'message' => 'What is your name?',
    'validate' => function ($value) {
        if (empty($value)) {
            return 'Name cannot be empty';
        }

        return true;
    }
]);

$command->write("Hello, $name!"); // Hello, John Doe!

$possiblySetValue = $something ?? null;

$results = sprout()->prompt([
    [
        'type' => 'text',
        'name' => 'name',
        'message' => 'What is your project name?',
        'initial' => 'my-project',
        'validate' => function ($value) {
            if (empty($value)) {
                return 'Name cannot be empty';
            }

            return true;
        }
    ],
    [
        'type' => $possiblySetValue ? null : 'select',
        'name' => 'type',
        'message' => 'What type of project do you want?',
        'initial' => 0,
        'choices' => [
            ['title' => 'Web', 'value' => 'web'],
            ['title' => 'API', 'value' => 'api'],
            ['title' => 'CLI', 'value' => 'cli'],
        ],
    ],
    [
        'type' => 'confirm',
        'name' => 'install',
        'message' => 'Do you want to install dependencies?',
        'initial' => true,
    ],
]);

$results; // ['name' => 'my-project', 'type' => 'web', 'install' => true]

$app->command('greet', function (Command $command) {
    $name = $command->argument('name');
    $uppercase = $command->option('uppercase');

    $greeting = "Hello, $name!";

    if ($uppercase) {
        $greeting = strtoupper($greeting);
    }

    $command->write($greeting);
});

$process = sprout()->createProcess('ls -la');

$process->onError(function ($error) use ($command) {
    $command->write("An error occurred: $error");
});

$process->run(function ($output) use ($command) {
    $command->write($output);
});

$process->isSuccessful(); // true
$process->getExitCode(); // 0

$output = sprout()->run('ls -la');

$command->write($output);

sprout()->composer()->hasDependency('leafs/fs'); // true
sprout()->composer()->run('composer-script');
sprout()->composer()->install(); // install all dependencies
sprout()->composer()->install('leafs/fs'); // install a package
sprout()->composer()->remove('leafs/fs'); // remove a package

sprout()->npm()->hasDependency('@leafphp/vite'); // true
sprout()->npm()->run('npm-script');
sprout()->npm()->install(); // install all dependencies
sprout()->npm()->install('vite'); // install a package
sprout()->npm()->remove('vite'); // remove a package

sprout()->npm('yarn')->install(); // install all dependencies using yarn
sprout()->npm('pnpm')->install('vite'); // install a package using pnpm
sprout()->npm('bun')->install('vite'); // install a package using bun

sprout()->composer()->install(function ($output) {
    $command->write($output);
});

sprout()->npm()->install('vite @leafphp/vite', function ($output) {
    $command->write("NPM -> $output");
});

$process = sprout()->composer()->install();

$process->isSuccessful(); // true