2017 © Pedro Peláez
 

library chubbyphp-lazy-command

Chubbyphp Lazy Command

image

chubbyphp/chubbyphp-lazy-command

Chubbyphp Lazy Command

  • Thursday, May 31, 2018
  • by dominikzogg
  • Repository
  • 0 Watchers
  • 0 Stars
  • 1,408 Installations
  • PHP
  • 1 Dependents
  • 1 Suggesters
  • 0 Forks
  • 0 Open issues
  • 6 Versions
  • 21 % Grown

The README.md

chubbyphp-lazy-command

Build Status Coverage Status Latest Stable Version Total Downloads Monthly Downloads Daily Downloads, (*1)

Description

Allow to lazyload commands., (*2)

Requirements

  • php: ^7.2
  • psr/container: ^1.0
  • symfony/console: ^3.4.43|^4.4.11|^5.0

Installation

Through Composer as [chubbyphp/chubbyphp-lazy-command][1]., (*3)

composer require chubbyphp/chubbyphp-lazy-command "^1.4"

Usage

For callables

<?php

use Chubbyphp\Lazy\LazyCommand;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Output\OutputInterface;

$container['service'] = function () {
    return function (InputInterface $input, OutputInterface $output) {
        // run some lazy logic
    };
};

$command = new LazyCommand(
   $container,
   'service',
   'name',
   [
       new InputArgument('argument'),
   ],
   'description',
   'help'
);

$command->run();

For existing commands extending Command

<?php

use Chubbyphp\Lazy\CommandAdapter;
use Chubbyphp\Lazy\LazyCommand;
use Symfony\Component\Console\Input\InputArgument;

$container['service'] = function () {
    return new CommandAdapter(new ExistingCommand());
};

$command = new LazyCommand(
   $container,
   'service',
   'name',
   [
       new InputArgument('argument'),
   ],
   'description',
   'help'
);

$command->run();

Dominik Zogg 2020, (*4)

The Versions

31/05 2018

dev-master

9999999-dev

Chubbyphp Lazy Command

  Sources   Download

MIT

The Requires

 

The Development Requires

by Dominik Zogg

console slim lazy chubbyphp

11/04 2018

1.1.0

1.1.0.0

Chubbyphp Lazy Command

  Sources   Download

MIT

The Requires

 

The Development Requires

by Dominik Zogg

console slim lazy chubbyphp

11/04 2018

1.0.3

1.0.3.0

Chubbyphp Lazy Command

  Sources   Download

MIT

The Requires

 

The Development Requires

by Dominik Zogg

console slim lazy chubbyphp

05/05 2017

1.0.2

1.0.2.0

Chubbyphp Lazy Command

  Sources   Download

MIT

The Requires

 

The Development Requires

by Dominik Zogg

console slim lazy chubbyphp

26/04 2017

1.0.1

1.0.1.0

Chubbyphp Lazy Command

  Sources   Download

MIT

The Requires

 

The Development Requires

by Dominik Zogg

console slim lazy chubbyphp

13/12 2016

1.0.0

1.0.0.0

Chubbyphp Lazy Command

  Sources   Download

MIT

The Requires

 

The Development Requires

by Dominik Zogg

console slim lazy chubbyphp