dazlab / laravel-usersnap-plugin
Usersnap integration
Installs: 5 986
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
Requires
- php: >=7.0
Requires (Dev)
- laravel/framework: 5.5.x
This package is not auto-updated.
Last update: 2025-07-30 09:57:50 UTC
README
Integration of https://app.usersnap.com/
Installation
Require this package with composer.
composer require dazlab/laravel-usersnap-plugin
Laravel 5.5 uses Package Auto-Discovery, so doesn't require you to manually add the ServiceProvider.
Set USERSNAP_APP_KEY
in .env
.
USERSNAP_ENABLED
is true bu default.
Laravel < 5.5:
If you don't use auto-discovery, add the ServiceProvider to the providers array in config/app.php
DazLab\Usersnap\ServiceProvider::class,
Copy the package config to your local config with the publish command:
php artisan vendor:publish --provider="DazLab\Usersnap\ServiceProvider"