stellarsecurity / support-client-laravel
Laravel HTTP client for Stellar Security Support Ticket API
Installs: 13
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/stellarsecurity/support-client-laravel
Requires
- php: ^8.2
- guzzlehttp/guzzle: ^7.0
- illuminate/http: ^11.0|^12.0
- illuminate/support: ^11.0|^12.0
This package is not auto-updated.
Last update: 2026-01-15 09:30:34 UTC
README
A small Laravel package that calls the Stellar Support Ticket API over HTTP (Basic Auth).
Config
Publish config:
php artisan vendor:publish --tag=stellarsecurity-support-client-config
Environment variables:
- STELLAR_SUPPORT_BASE_URL
- STELLAR_SUPPORT_BASIC_USER
- STELLAR_SUPPORT_BASIC_PASS
- STELLAR_SUPPORT_TIMEOUT (default 15)
- STELLAR_SUPPORT_API_PREFIX (default /api/v1)
Usage
use StellarSecurity\SupportClient\Facades\Support; Support::createTicket([...]); Support::listTicketsByUserRef('user-123'); Support::addMessage($ticketId, [...]);