Download the PHP package leafs/sprout without Composer

On this page you can find all versions of the php package leafs/sprout. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package sprout

Leaf Sprout (WIP)

🌱 Fast, lightweight and minimal CLI framework for PHP. It provides a type-safe, feature-rich environment to build CLI apps of all sizes, plus a ton of helpers for building amazing experiences for users interacting with your CLI app.

Installation

You can install Leaf Sprout using the Leaf CLI or Composer:

Usage

To get started, you need to create a file which will be the entry point for your CLI app. This file should be executable and should have a shebang at the top of the file. Here's an example of a simple CLI app:

You can then run your CLI app using the PHP CLI:

Writing Commands

You can write your commands in a functional way using the command() method on the app instance, or you can create a class that extends the Leaf\Sprout\Command class. Here's an example of a command written as a class:

You can then register this command with the app instance:

Styling Output

Leaf Sprout comes with a built-in output styling system that allows you to style your output using a simple API adapted from TermWind. Here's an example of how you can style your output:

You can also use pre-configured styles like success(), error(), warning(), and info():

Most of the styling options are chainable, so you can chain multiple styles together:

Input Handling

Leaf Sprout comes with a built-in input handling system that allows you to easily get input from the user. The easiest way is to use the prompt() method:

You can also have multiple prompts in a single command for more complex interactions like setting up a project via your CLI:

When the user runs the command, they will be prompted for the project name, type, and whether they want to install dependencies. The results will be stored in the $results variable. The prompt type can be text, select, confirm, password, number, or text, when set to null, the prompt will be skipped.

Besides prompts, you can also use the arguments() and options() methods to get arguments and options passed to the command:

Output Handling

Process Handling

Sprout comes with a built-in process handling system that allows you to run processes on the system. You can use the process() method to run a process:

You can also use the run() method to run a process and get the output:

Composer & Npm Scripts

A lot of console applications allow you to install composer or npm dependencies, and sprout makes it a whole lot easier to do so:

For npm, you can also specify the package manager you want to use:

All the composer and npm commands log the output to the console in real-time. If you want to change the output, you can pass a callback as the second argument:

The also return a process instance which you can use to get the output, check if the process was successful, and get the exit code:


All versions of sprout with dependencies

PHP Build Version
Package Version
Requires php Version ^7.4|^8.0
symfony/process Version *
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package leafs/sprout contains the following files

Loading the files please wait ....