Download the PHP package surgiie/console without Composer

On this page you can find all versions of the php package surgiie/console. 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 console

Console

Tests

A base command and set of useful support trait/classes for Laravel or Laravel Zero commands.

Installation

Features

Merged Data

All arguments and options are merged into a single $this->data collection, giving a fluent object to pull and work with option/arg data.

Check if options were passed:

Store values for performance into cache array

Helpful for caching instances into a array property if going to be called repeatedly.

Validation

Utilize Laravel Validation for Arguments & Options

Arbitrary Options

To allow your command to accept arbitrary options not part of the command signature:

Note Arbitrary options are parsed as is, without any validation or transformation, so ensure you run escapeshellarg or validate on any values that will be used in a shell command.

Argument & Option Transformation/Formatting

Transform, format, or sanitize input and arguments easily before handle is called, using a validation rule like syntax:

*Note - For more, read the surgiie/tranformer readme docs.

Note - The base command performs some default tranformations before custom defined ones, they are as follows:

Check Requirements

Provide a list of requirements before the handle is called:

Note If any of the methods above return an error string or raise FailedRequirementException, the handle method will not be called.

In addition, if you need custom logic to check if a string path is available, you can overwrite the following method:

Render Files With Blade Engine:

An exented version of the blade engine is available to compile any textual file:

Long Running Tasks

To give a better visual experience for long running tasks, you can use the runTask method:

Note - In order to show a animated spinner, the pcntl PHP extension must be installed. When this extension is not available, a static version of the spinner will appear instead.

Custom Task Finished Text

When the task is completed, you can customize text shown the task has finished:

Call Succeeded/Failed Functions Automatically

Automatically calls succeeded and failed based on handle exit code.


All versions of console with dependencies

PHP Build Version
Package Version
Requires php Version ^8.1
illuminate/console Version ^10.0
illuminate/validation Version ^10.0
nunomaduro/termwind Version ^1.3
surgiie/blade Version ^3.0.0
surgiie/transformer Version ^0.3.0
spatie/once Version ^3.1
vlucas/phpdotenv Version ^5.5
spatie/invade Version ^1.1
laravel/prompts Version ^0.1.11
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 surgiie/console contains the following files

Loading the files please wait ....