Code Monkey home page Code Monkey logo

rpcbundle's Introduction

(EARLY ALPHA VERSION) RPC Bundle for Symfony2

MO\RPCBundle: RPC-enabled Symfony2 services from Symfony2 container

This bundle enables services defined inside the symfony container to be exposed over HTTP protocol (Controller endpoints).

This bundle enables you:

  • Define RPC-enabled classes in a service available for RPC calls
  • Define specific methods as services

Installation

    composer require mo/rpc-bundle
  • Add the bundle in your application kernel:
// app/AppKernel.php

public function registerBundles()
{
    return [
        // ...
        new MO\RPCBundle\RPCBundle(),
        // ...
    ];
}
  • Routing: you can set up custom routing or use the default one by adding the following lines in app/config/routing.yml:
rpc_bundle:
    resource: "@RPCBundle/Resources/config/routing.yml"

If you don't want to use default routing, you can use your own routes like this:

mo.rpc.run:
    path: /rpc/execute/{service}/{method}
    methods: [GET]
    defaults: { _controller: RPCBundle:RPC:run, service: null, method: null }

Usage

  1. Create a new service in the Symfony2 container and add the rpc.service
# ------------------------------------------------------------------------
# DEMO RPC Service
# ------------------------------------------------------------------------
mo.rpc.service:
    class: MO\RPCBundle\Domain\Service\Demo\DemoService
    arguments:
        - '0.0.1'
        - '@?doctrine.dbal.default_connection'
    tags:
        - { name: rpc.service }

Credits

This bundle is brought to you by Max101 and awesome contributors.

rpcbundle's People

Contributors

max101 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.