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.
PHP 8.0+
-
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!');