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')}!");
}
}
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