xiag/json-command-bundle

This package is abandoned and no longer maintained. The author suggests using the graviton/json-command-bundle package instead.

Symfony bundle to graviton/json-command

v1.0.1 2019-06-18 11:19 UTC

This package is auto-updated.

Last update: 2021-08-18 07:31:09 UTC


README

Symfony bundle to the graviton/json-command.

Installation

Step 1: Download the Bundle

Run

composer require graviton/json-command-bundle

or add to your composer.json

"graviton/json-command-bundle": "*",

Step 2: Enable the Bundle

Then, enable the bundle by adding the following line in the app/AppKernel.php file of your project:

<?php
class AppKernel extends Kernel
{
    public function registerBundles()
    {
        $bundles = [
            // ...
            new \Graviton\JsonCommandBundle\JsonCommandBundle(),
        ];

        // ...
    }

    // ...
}

How to use

Register new service:

<!-- app/config/services.xml -->
<service id="my.node.executor" class="%graviton.json_command.jsonexecutor.class%">
    <factory service="graviton.json_command.jsonexecutor.factory" method="createJsonExecutor"/>
    <argument>node</argument>
    <argument>array</argument>
    <argument type="collection">
        <argument>-type=general</argument>
    </argument>
</service>