palzin / beam-core
Beam is a friendly app designed to boost your Laravel / PHP coding and debugging experience.
1.0
2025-03-16 09:50 UTC
Requires
- php: ^8.1
- ext-curl: *
- nunomaduro/termwind: ^1.15|^2.0
- ramsey/uuid: ^4.7.5
- spatie/backtrace: ^1.5
- symfony/console: ^5.4|^6.4|^7.0
- symfony/finder: ^5.4|^6.4|^7.0
- symfony/process: ^5.4|^6.4|^7.0
- symfony/var-dumper: ^5.4|^6.4|^7.0
- symfony/yaml: ^5.4|^6.4|^7.0
Requires (Dev)
- illuminate/support: ^10.46
- laravel/pint: ^1.13.7
- pestphp/pest: ^2.28.1
- phpstan/phpstan: ^1.10.50
README
Beam Core
👋 Hello Dev,
Beam is a friendly app designed to boost your PHP coding and debugging experience.
When using Beam, you can see the result of your debug displayed in a standalone Desktop application.
Get Started
Requirements
PHP 8.0+
Usage
-
Download the 🖥️ Beam Desktop App from Palzin Beam.
-
Install Beam Core in your PHP project, run the command:
composer require palzin/beam-core --dev
- Configure Beam, run:
vendor/bin/beam configure
- Add a
ds()
function somewhere in your code.
Here's an example:
// File: index.php <?php //... some PHP code ... ds('Hello from Beam!');