ubrize / sales-lv
SMS sales.lv channel for Laravel 5.3+
Installs: 888
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/ubrize/sales-lv
Requires
- php: >=5.6.4
- ext-json: *
- ext-mbstring: *
- guzzlehttp/guzzle: ^6.2
- illuminate/notifications: 5.1 - 5.8
- illuminate/queue: 5.1 - 5.8
- illuminate/support: 5.1 - 5.8
This package is auto-updated.
Last update: 2025-12-07 03:48:23 UTC
README
Installation
You can install the package via composer:
composer require ubrize/sales-lv
Setting up sales.lv SMS notifications
Add sales.lv configuration to config/services.php:
// config/services.php ... 'saleslv' => [ 'key' => env('SALESLV_KEY'), 'sender' => env('SALESLV_SENDER', 'Example Sender'), 'endpoint' => env('SALESLV_ENDPOINT', 'https://traffic.sales.lv/API:0.14/'), ], ...