ameenross / psysh-bundle
A port of the PHP REPL PsySH for Symfony 2.x.
Package info
github.com/ameenross/PsyshBundle
Type:symfony-bundle
pkg:composer/ameenross/psysh-bundle
v2.0.4
2018-04-12 10:51 UTC
Requires
- psy/psysh: ~0.3
- symfony/framework-bundle: ~2.3|~3.0
Requires (Dev)
- phpunit/phpunit: ~4.5
- symfony/symfony: ~2.7|~3.0
This package is auto-updated.
Last update: 2026-02-24 08:46:49 UTC
README
Intro
When trying to install the Psysh Bundle from Theo Fidry in a Symfony 2.3 project, I ran into a bug. Since Theo Fidry only seems to maintain a newer version of the bundle (he only has a master branch), I decided to fork.
Install
composer require --dev ameenross/psysh-bundle
Then, enable the bundle by updating your app/AppKernel.php file to enable the bundle:
<?php // app/AppKernel.php public function registerBundles() { //... if (in_array($this->getEnvironment(), ['dev', 'test'])) { //... $bundles[] = new Fidry\PsyshBundle\PsyshBundle(); } return $bundles; }