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.
Download surgiie/console
More information about surgiie/console
Files in surgiie/console
Package console
Short Description A base command and set of useful traits/support classes for Laravel or Laravel Zero commands.
License MIT
Informations about the package console
Console
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:
- All options with "date" in their name, are automatically converted to
\Carbon\Carbon
instances.
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
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