1. Go to this page and download the library: Download devdot/cli 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/ */
devdot / cli example snippets
namespace App\Commands\Testing;
use App\Commands\Command;
class Example extends Command
{
protected function handle(): int
{
//
return self::SUCCESS;
}
}
class SomeCustomCommand extends Command
{
public static function getGeneratedName(): string
{
return 'custom_command_name';
}
}
namespace App\Commands;
use Devdot\Cli\Exceptions\CommandFailedException;
class ExampleCommand extends Command
{
protected function handle(): int
{
$this->handleReadingFiles();
$this->handleProcessingFiles()
$this->handleWritingFiles();
return self::SUCCESS;
}
private function handleReadingFiles(): void
{
if ($this->fileReader->get() === '') {
// exit the command
throw new CommandFailedException('File is empty'); // the command will return code 1
}
}
// ...
}
final class Kernel extends BaseKernel
{
protected array $services = [
// register your service classes here
\App\Services\YourService::class,
];
// ...
}
class ExampleCommand extends Command
{
public function __construct(
private \App\Services\YourService $service, // automatically injected
) {
// ...
}
protected function handle(): int
{
$this->service->doSomething();
// ...
}
}
// src/Providers/YourProvider.php
namespace App\Providers;
use Devdot\Cli\Container\ServiceProvider;
use Symfony\Component\DependencyInjection\ContainerBuilder;
class YourProvider extends ServiceProvider
{
/** @var class-string[] */
protected array $services = [
// you may add additional service class names here
];
public function booting(ContainerBuilder $container): void
{
parent::booting($container); // this will register the services in $this->services
// this is called during the container build phase
$container->autowire(SomeService::class)->setFactory([SomeFactory::class, 'make']);
}
}
// src/Kernel.php
namespace App;
final class Kernel extends Devdot\Cli\Kernel
{
/** @var class-string<\Devdot\Cli\Container\ServiceProvider>[] */
protected array $providers = [
// add the new provider here
\App\Providers\YourProvider::class,
];
// ...
}
namespace Devdot\Cli\Traits;
trait ForceTrait
{
public function __constructForceTrait(): void
{
// this method will be called by the container after Command::__construct on each command that uses this trait
$this->addOption('force', 'f', null, 'Force run the command.');
}
}
trait DataTrait
{
protected Data $data
public function __constructForceTrait(Data $data): void
{
// $data will be provided by the container if the service Data is registered
$this->data = $data;
}
}
⊢ bin/
⊢ build // build script for production
⊢ dev // application in development mode
⊢ prod // application in production mode
⊢ src/
⊢ Commands/
⊢ Example/
⊢ SendMessage.php // command "example:send-message"
⊢ About.php // command "about"
⊢ Command.php // project base command class (optional)
⊢ Kernel.php // application kernel, called by binaries
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.