millerphp/laravel-browserless

This is my package laravel-browserless

Fund package maintenance!
MillerPHP

Installs: 52

Dependents: 0

Suggesters: 0

Security: 0

Stars: 9

Watchers: 4

Forks: 1

Open Issues: 1

pkg:composer/millerphp/laravel-browserless

v1.0.0 2025-04-16 13:45 UTC

This package is auto-updated.

Last update: 2025-10-06 09:23:20 UTC


README

A powerful Laravel package for interacting with the Browserless API, providing an elegant way to take screenshots, generate PDFs, analyze performance, and automate browser tasks.

Installation

  1. Install the package via Composer:
composer require millerphp/laravel-browserless
  1. Publish the configuration file:
php artisan vendor:publish --provider="MillerPHP\LaravelBrowserless\BrowserlessServiceProvider"
  1. Configure your environment variables in .env:
BROWSERLESS_API_KEY=your_api_key
BROWSERLESS_API_URL=https://chrome.browserless.io

Quick Start

Take a screenshot:

use MillerPHP\LaravelBrowserless\Facades\Browserless;

$screenshot = Browserless::screenshot()
    ->url('https://example.com')
    ->send();

Generate a PDF:

$pdf = Browserless::pdf()
    ->url('https://example.com')
    ->send();

Analyze performance:

$performance = Browserless::performance()
    ->url('https://example.com')
    ->send();

$score = $performance->categoryScore('performance');

Documentation

Features

  • Screenshots: Capture full-page or element-specific screenshots
  • PDF Generation: Convert web pages to PDFs with custom options
  • Performance Analysis: Analyze website performance using Lighthouse
  • Browser Automation: Execute complex browser tasks using BQL
  • Custom Options: Fine-tune every aspect of your requests
  • Error Handling: Comprehensive error handling and logging
  • Testing Support: Built-in testing utilities and mocking
  • Security: Secure configuration and API key management
  • Performance: Caching, batch processing, and resource optimization

Requirements

  • PHP 8.1 or higher
  • Laravel 9.0 or higher
  • Composer

License

This package is open-sourced software licensed under the MIT license.