Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 575 Bytes

File metadata and controls

23 lines (19 loc) · 575 Bytes

ObjRef RemoteBundle

Symfony Bundle of my ObjRef remote php objects

Check out my ExampleBundle for a working demo

Installation

Just run composer require uwem/objref-remotebundle and enable the bundle in the kernel:

<?php
// app/AppKernel.php

public function registerBundles()
{
    $bundles = [
        // ...
        new ObjRef\RemoteBundle\ObjRefRemoteBundle(),
        // ...
    ];
}

Testing

You can run the tests in any suitable symfony installation using phpunit