2017 © Pedro Peláez
 

symfony2-bundle remote-call-bundle

Symfony2 RemoteCallBundle

image

darles/remote-call-bundle

Symfony2 RemoteCallBundle

  • Tuesday, December 17, 2013
  • by darles
  • Repository
  • 3 Watchers
  • 9 Stars
  • 806 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

DarlesRemoteCallBundle

The DarlesRemoteCallBundle adds links to quick open current Controller, Template & Entities in PHPStorm IDE using RemoteCall Plugin (http://plugins.jetbrains.com/plugin/6027?pr=phpStorm) in Symfony2 profiler toolbar., (*1)

Demo

  • https://www.dropbox.com/s/dfcvdmrbtvpyt51/remote_call_bundle_example.png
  • http://www.youtube.com/watch?v=fV5G2sVM0hw

Installation

  • Install RemoteCall plugin to your PHPStorm IDE

http://plugins.jetbrains.com/plugin/6027?pr=phpStorm, (*2)

  • Add DarlesRemoteCallBundle in your composer.json require-dev section:
{
    "require-dev": {
        "darles/remote-call-bundle": "dev-master"
    }
}
  • Enable the bundle in the kernel on the DEV environment:

``` php <?php // app/AppKernel.php, (*3)

public function registerBundles() { if (in_array($this->getEnvironment(), array('dev', 'test'))) { //.. $bundles[] = new Darles\Bundle\RemoteCallBundle\DarlesRemoteCallBundle(); } }, (*4)


- Open your Symfony2 application in dev environment, you should see "Open in PHPStorm" tab in profiler toolbar. License ------- This bundle is under the MIT license. XDebug & RemoteCall ------------------- Enable RemoteCall links on your XDebug stack trace by adding this line to your php.ini ``` ini xdebug.file_link_format="javascript:var rq = new XMLHttpRequest(); rq.open('GET', 'http://localhost:8091?message=%f:%l', true); rq.send(null);"

The Versions

17/12 2013

dev-master

9999999-dev

Symfony2 RemoteCallBundle

  Sources   Download

MIT

The Requires

 

The Development Requires

by Darius Leskauskas