Search by

financegpt / laravel

cybatar

FinanceGPT Laravel integration preview

v0.1.0 2026-08-26 13:22 UTC

This package is auto-updated.

Last update: 2026-08-26 16:29:39 UTC


README

Native Laravel integration for the FinanceGPT API v2 contract.

  • Laravel: 9 / 10 / 11 / 12
  • PHP: 8.1+
  • OpenAPI SHA-256: 228f3cf999f801d03634f0dad1fc6d296671bc13a8cf0d80994b00a57b62f910
  • Packagist target: financegpt/laravel
  • Registry status: not published

Local package use

Add the package as a local/path repository or install the verified FinanceGPT ZIP until Packagist publication. Then:

php artisan vendor:publish --tag=financegpt-config
FINANCEGPT_API_KEY=your-sandbox-key
FINANCEGPT_WEBHOOK_SECRET=your-webhook-secret
use FinanceGPT\Laravel\Facades\FinanceGPT;
$result = FinanceGPT::get('/workspace/profile');

Includes typed API exceptions, bounded retries honoring Retry-After, X-FinanceGPT-Request-ID, idempotency keys, service-container binding, facade support and webhook HMAC-SHA256 middleware.