2017 © Pedro PelĂĄez
 

symfony-bundle psysh-bundle

A port of the PHP REPL PsySH for Symfony 2.x.

image

ameenross/psysh-bundle

A port of the PHP REPL PsySH for Symfony 2.x.

  • Thursday, April 12, 2018
  • by ameenross
  • Repository
  • 1 Watchers
  • 0 Stars
  • 10 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 12 Forks
  • 0 Open issues
  • 12 Versions
  • 11 % Grown

The README.md

PsyshBundle

Package version Build Status Scrutinizer Code Quality License, (*1)

A bundle to use the php REPL PsySH with [Symfony][2]. Learn more at psysh.org and check out the Interactive Debugging in PHP talk from OSCON on Presentate., (*2)

What does it do exactly? * Loads PsySH with the application dependencies * Gives access to the following variables:, (*3)

Variable Description
$container Instance of Symfony ServiceContainer
$kernel Instance of Symfony Kernel
$parameters Instance of Symfony parameters

Aside from that it's the plain old PsySH! You can also customize it to add your own variables., (*4)

Documentation

  1. Install
  2. Usage
    1. PsySH as a debugger
    2. Reflect like a boss
    3. PsySH for breakpoints
  3. Customize PsySH
  4. Credits

Install

You can use Composer to install the bundle to your project:, (*5)

composer require --dev theofidry/psysh-bundle

Then, enable the bundle by updating your app/AppKernel.php file to enable the bundle:, (*6)

<?php
// app/AppKernel.php

public function registerBundles()
{
    //...

    if (in_array($this->getEnvironment(), ['dev', 'test'])) {
        //...
        $bundles[] = new Fidry\PsyshBundle\PsyshBundle();
    }

    return $bundles;
}

Usage

# Symfony > 3.0
php bin/console psysh

# Symfony < 3.0
php app/console psysh

or, (*7)

use function Fidry\PsyshBundle\psysh

class X
{
    function foo()
    {
        psysh(get_defined_vars(), $this);   // Debug with the current context
    }
}

PsySH Shell, (*8)

Go further., (*9)

Customize PsySH

Adding a custom command

Adding a custom command for PsySH is as simple as defining a service with psysh.command tag!, (*10)

services:
    my_psysh_command:
        class: Acme\Shell\MyCommand
        tags:
            - { name: psysh.command }

Or even simpler if you use Symfony 3.3+:, (*11)

services:
    _defaults:
        autonfigure: true
        autowire: true
        public: false

    Acme\Shell\MyCommand: ~

PsyshBundle provides autoconfiguration for custom Psysh command services, as long as they inherit from Psy\Command\ReflectingCommand or Psy\Command\Command., (*12)

Adding custom variables

It is possible to add custom variables to the shell via configuration. Variables can be of any type, container parameters references (e.g. %kernel.debug) or even services (prefixed with @, e.g. "@my_service")., (*13)

# app/config/config_dev.yml

psysh:
    variables:
        foo: bar
        router: "@router"
        some: [thing, else]
        debug: "%kernel.debug%"

Now if you run php app/console psysh and then ls, you will see the variables $foo, $router, $some and $debug, in addition to already defined variables:, (*14)

>>> ls
Variables: $foo, $router, $some, $debug...

Default variables are: - $container (the service container) - $kernel - $parameters (all container parameters) - $self (the PsySH shell itself), (*15)

Credits

This bundle is developed by Théo FIDRY. This project has been made possible thanks to:, (*16)

The Versions

12/04 2018

dev-symfony-2.x

dev-symfony-2.x

A port of the PHP REPL PsySH for Symfony 2.x.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Adrian Palmer
by Ameen Ross

console symfony shell interactive repl psysh

12/04 2018

v2.0.4

2.0.4.0

A port of the PHP REPL PsySH for Symfony 2.x.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Adrian Palmer
by Ameen Ross

console symfony shell interactive repl psysh

12/04 2018

v2.0.3

2.0.3.0

A port of the PHP REPL PsySH for Symfony 2.x.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Adrian Palmer
by Ameen Ross

console symfony shell interactive repl psysh

17/12 2017

dev-master

9999999-dev

A port of the PHP REPL PsySH for Symfony.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Adrian Palmer

console symfony shell interactive repl psysh

23/04 2016

v2.0.2

2.0.2.0

A port of the PHP REPL PsySH for Symfony.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Adrian Palmer

console symfony shell interactive repl psysh

09/03 2016

v2.0.1

2.0.1.0

A port of the PHP REPL PsySH for Symfony.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Adrian Palmer

console symfony shell interactive repl psysh

21/02 2016

v2.0.0

2.0.0.0

A port of the PHP REPL PsySH for Symfony.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Adrian Palmer

console symfony shell interactive repl psysh

17/09 2015

v1.1.2

1.1.2.0

A port of the PHP REPL PsySH for Symfony.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Adrian Palmer

console symfony shell interactive repl psysh

16/09 2015

v1.1.1

1.1.1.0

A port of the PHP REPL PsySH for Symfony.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Adrian Palmer

console symfony shell interactive repl psysh

13/08 2015

v1.1.0

1.1.0.0

A port of the PHP REPL PsySH for Symfony.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Adrian Palmer

console symfony shell interactive repl psysh

14/07 2015

v1.0.0

1.0.0.0

A port of the PHP REPL PsySH for Symfony.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Adrian Palmer

console symfony shell interactive repl psysh

22/06 2015

v1.0.0-beta

1.0.0.0-beta

A port of the PHP REPL PsySH for Symfony.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Adrian Palmer

console symfony shell interactive repl psysh