Looking to hire Laravel developers? Try LaraJobs

support-client-laravel maintained by stellarsecurity

Description
Laravel HTTP client for Stellar Security Support Ticket API
Last update
2026/01/14 18:36 (dev-main)
License
Links
Downloads
28

Comments
comments powered by Disqus

Stellar Security Support Client (Laravel)

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, [...]);