theofidry/psysh-bundle
最新稳定版本:4.5.0
Composer 安装命令:
composer require theofidry/psysh-bundle
包简介
A port of the PHP REPL PsySH for Symfony.
README 文档
README
A bundle to use the php REPL PsySH with Symfony. Learn more at psysh.org and check out the Interactive Debugging in PHP talk from OSCON on Presentate.
What does it do exactly?
- Loads PsySH with the application dependencies
- Gives access to the following variables:
| 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.
Documentation
Install
You can use Composer to install the bundle to your project:
composer require --dev theofidry/psysh-bundle
Then, enable the bundle by updating your app/AppKernel.php file to enable the bundle:
(not needed on symfony 5, bundle is automaticaly registred in config/bundles.php)
<?php // app/AppKernel.php public function registerBundles() { //... if (in_array($this->getEnvironment(), ['dev', 'test'])) { //... $bundles[] = new Fidry\PsyshBundle\PsyshBundle(); } return $bundles; }
Usage
# Symfony > 4.0
bin/console psysh
or
use function psysh class X { function foo() { psysh(get_defined_vars(), $this); // Debug with the current context } }
Customize PsySH
Adding a custom command
Adding a custom command for PsySH is as simple as defining a service with psysh.command tag!
services: my_psysh_command: class: Acme\Shell\MyCommand tags: - { name: psysh.command }
Or even simpler if you use Symfony 3.3+:
services: _defaults: autoconfigure: true autowire: true public: false Acme\Shell\MyCommand: ~
PsyshBundle provides autoconfiguration for custom Psysh command services, as long as they inherit from
Psy\Command\ReflectingCommandorPsy\Command\Command.
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").
# 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:
>>> ls
Variables: $foo, $router, $some, $debug...
Default variables are:
$container(the service container)$kernel$parameters(all container parameters)$self(the PsySH shell itself)
Credits
This bundle is developed by Théo FIDRY. This project has been made possible thanks to:
- Justin Hileman: author of PsySH and all the contributors of the PsySH project
- Adrian Palmer: gave the lead for porting PsySH on Symfony
theofidry/psysh-bundle 适用场景与选型建议
theofidry/psysh-bundle 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 3.68M 次下载、GitHub Stars 达 209, 最近一次更新时间为 2026 年 01 月 04 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「symfony」 「console」 「shell」 「interactive」 「REPL」 「psysh」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 theofidry/psysh-bundle 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 theofidry/psysh-bundle 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 theofidry/psysh-bundle 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
This class provides you with an easy-to-use interface to progress bars.
A Laravel package to retrieve data from Google Search Console
Additional artisan commands for Laravel
AMWSCAN (Antimalware Scanner) is a php antimalware/antivirus scanner console script written in php for scan your project. This can work on php projects and a lot of others platform.
Shell command module for PHP.
The bundle for easy using json-rpc api on your project
统计信息
- 总下载量: 3.68M
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 210
- 点击次数: 30
- 依赖项目数: 11
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2026-01-04
