1. Go to this page and download the library: Download surgiie/console 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/ */
surgiie / console example snippets
namespace App\Console\Commands;
use Surgiie\Console\Command;
class ExampleCommand extends Command
{
public function handle()
{
$this->data->get("some-arg-or-option", 'default');
}
}
namespace App\Console\Commands;
use Surgiie\Console\Command;
class ExampleCommand extends Command
{
protected $signature = "example {--iterations=}";
public function handle()
{
// check if the user passed the --iterations flag in the command call.
if($this->optionWasPassed("iterations")){
}
}
}
protected function example()
{
// get a value or store it in the cache array if it doesnt exist
return $this->fromArrayCache('example', fn () => new Example);
}
namespace App\Console\Commands;
use Surgiie\Console\Command;
class ExampleCommand extends Command
{
protected $signature = "example {--iterations=}";
public function rules()
{
return [
'interations'=>'
namespace App\Console\Commands;
use Surgiie\Console\Command;
class ExampleCommand extends Command
{
public function arbitraryOptions()
{
return true;
}
public function handle()
{
// available if --something option is passed:
$something = $this->arbitraryData->get("something")
}
}
public function ow an exception:
throw new FailedRequirementException("Failed to meet some requirment");
// or return an error string:
return "Failed to meet some uireSomethingOrFail", //unless the method exists on the class, it will call that instead
function () { // can use callback that returns an error string
$process = new Process(['docker', 'info']);
$process->run();
return $process->getOutput() == '' ? 'Docker is not running' : '';
},
// can use also class constants or instances that have __invoke method.
new Example,
Example::class
];
}
/**
* Check if a executable is in $PATH.
*
* @param string $ $rocess->run();
return $process->getOutput() == '' ? "This command
public function handle()
{
$contents = $this->render('/some/file', ['var'=>'example']);
}
// set a custom path for compiled/cached files. Default is /tmp/.compiled or tests/.compiled when running unit tests
public function bladeCompiledPath(): string
{
return '/custom/directory';
}
$this->runTask("Doing stuff", function($task){
sleep(4); // simulating stuff.
return true; // return whether task succeeded or not.
}, spinner: true); // show spinner while task is running.
public function succeeded()
{
// called when handle int is 0
$this->components->info("It ran successfully");
}
public function failed()
{
// called when handle int is 1
$this->components->info("It didnt run successfully");
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.