c6digital / laravel-plausible
Send server-side events from Laravel to Plausible.
Requires
- php: ^8.1
- illuminate/contracts: ^10.0 | ^11.0
- spatie/laravel-package-tools: ^1.14.0
Requires (Dev)
- guzzlehttp/guzzle: ^7.8
- larastan/larastan: ^2.0.1
- laravel/pint: ^1.0
- nunomaduro/collision: ^7.8 | ^8.0
- orchestra/testbench: ^8.8 | ^9.0
- pestphp/pest: ^2.20
- pestphp/pest-plugin-arch: ^2.0
- pestphp/pest-plugin-laravel: ^2.0
- phpstan/extension-installer: ^1.1
- phpstan/phpstan-deprecation-rules: ^1.0
- phpstan/phpstan-phpunit: ^1.0
- spatie/laravel-ray: ^1.26
This package is auto-updated.
Last update: 2024-10-08 10:09:24 UTC
README
This package provides a small wrapper for the Plausible "Events" API that makes it easy to send custom server-side events to Plausible.
Installation
You can install the package via Composer:
composer require c6digital/laravel-plausible
You can publish the config file with:
php artisan vendor:publish --tag="laravel-plausible-config"
Usage
Add your Plausible domain to your .env
file.
PLAUSIBLE_DOMAIN=
The domain is the name you gave your site when creating it inside of Plausible.
Use the C6Digital\Plausible\Facades\Plausible
facade to start sending events.
Plausible::event(name: 'my-event-name', props: []);
If you prefer to use dependency injection, you can use the C6Digital\Plausible\Plausible
class and inject it into your controllers, jobs, etc.
Testing
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
License
The MIT License (MIT). Please see License File for more information.