定制 palzin/beam 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

palzin/beam

最新稳定版本:1.0

Composer 安装命令:

composer require palzin/beam

包简介

Beam is a friendly app designed to boost your Laravel PHP coding and debugging experience.

README 文档

README

Beam

Download the App

Available for Windows, Linux and macOS.

📚 Documentation


PalzinDumps Windows App PalzinDumps MacOS App PalzinDumps Linux App

👋 Hello Dev,


Beam is a friendly app that boosts your Laravel PHP coding and debugging experience.

When using Beam, you can see the result of your debug displayed in a standalone Desktop application.

These are some debug tools available for you:

  • Dump single or multiple variables at once.
  • Send dump, dd to Beam app.
  • Watch Laravel Mail.
  • See your dumped values in a Table, with a built-in search feature.
  • Improve your debugging experience using different screens.
  • Watch SQL Queries.
  • Watch Slow Queries SQL Queries.
  • Monitor Laravel Logs.
  • Monitor Livewire component.
  • Validate JSON strings.
  • Verify if a string contains a substring.
  • View phpinfo() configuration.
  • List your Laravel Routes.
  • Inspect Model attributes.
  • Learn more in our Reference Sheet.
  • Multiple Themes (light, dark, dracula, dim, retro ...)
  • Shortcuts (clear, always on top)

Get Started

Requirements

PHP 8.1+ and Laravel 10.0+

Using Laravel

 composer require palzin/beam --dev

PHP Project

 composer require palzin/beam-core --dev

See also: https://palzin.app/beam

  • Debug your code using ds() in the same way you would use Laravel's native functions dump() or dd().

  • Run your Laravel application and see the debug dump in the Beam App window.

Example

Here's an example:

// File: routes/web.php

<?php 

Route::get('/', function () {
    ds('Home page accessed!');
    return view('home');
});

The Desktop App receives:

// File: routes/web.php

<?php 

Route::get('/', function () {
    \App\Models\User::all(); // duplicate query example
    \App\Models\User::all(); // duplicate query example
    \App\Models\Dish::all();
    return '';
});

The Desktop App receives:

统计信息

  • 总下载量: 5
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 1
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2025-03-16