dazlab / laravel-usersnap-plugin
Usersnap integration
This package's canonical repository appears to be gone and the package has been frozen as a result. Email us for help if needed.
Package info
github.com/dazlab-team/laravel-usersnap-plugin
pkg:composer/dazlab/laravel-usersnap-plugin
1.0.3
2020-05-25 18:44 UTC
Requires
- php: >=7.0
Requires (Dev)
- laravel/framework: 5.5.x
This package is not auto-updated.
Last update: 2026-01-14 12:06:56 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"