darles/remote-call-bundle

Symfony2 RemoteCallBundle

Installs: 816

Dependents: 0

Suggesters: 0

Security: 0

Stars: 9

Watchers: 4

Forks: 1

Open Issues: 0

Type:symfony2-bundle

dev-master / 0.1.x-dev 2013-12-17 07:58 UTC

This package is not auto-updated.

Last update: 2024-04-08 22:24:49 UTC


README

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.

Demo

Installation

  • Install RemoteCall plugin to your PHPStorm IDE

http://plugins.jetbrains.com/plugin/6027?pr=phpStorm

  • 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
// app/AppKernel.php

public function registerBundles()
{
    if (in_array($this->getEnvironment(), array('dev', 'test'))) {
        //..
        $bundles[] = new Darles\Bundle\RemoteCallBundle\DarlesRemoteCallBundle();
    }
}
  • 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

xdebug.file_link_format="javascript:var rq = new XMLHttpRequest(); rq.open('GET', 'http://localhost:8091?message=%f:%l', true); rq.send(null);"