2017 © Pedro Peláez
 

symfony-bundle chain-command-bundle

Symfony bundle - implements command chaining functionality.

image

krasavcheg.ua/chain-command-bundle

Symfony bundle - implements command chaining functionality.

  • Saturday, January 14, 2017
  • by krasavchegUa
  • Repository
  • 1 Watchers
  • 0 Stars
  • 5 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

ChainCommandBundle

ChainCommandBundle is a Symfony bundle for command chaining functionality., (*1)

Installation

Step 1: Download the Bundle

Open a command console, enter your project directory and execute the following command to download the latest stable version of this bundle:, (*2)

$ composer require krasavcheg.ua/chain-command-bundle

Step 2: Enable the Bundle

Then, enable the bundle by adding it to the list (FooBundle and BarBundle provided for demo purposes) of registered bundles in the app/AppKernel.php file of your project:, (*3)

<?php
// app/AppKernel.php

// ...
class AppKernel extends Kernel
{
    public function registerBundles()
    {
        $bundles = array(
            // ...
            new krasavchegUa\FooBundle\FooBundle(),
            new krasavchegUa\BarBundle\BarBundle(),
            new krasavchegUa\ChainCommandBundle\ChainCommandBundle(),
        );

        // ...
    }

    // ...
}

Step 3: Run command

php bin/console foo:hello

Usage?

See documentation., (*4)

The Versions

14/01 2017

dev-master

9999999-dev https://github.com/krasavchegUa/ChainCommandBundle

Symfony bundle - implements command chaining functionality.

  Sources   Download

MIT

The Requires

 

by Volodymyr Rudak