LaravelPackages.net
Acme Inc.
Toggle sidebar
agathaglobaltech/ag-laravel-sdk

Laravel API wrapper for Annuities Genius

399
0
v0.0.28
About agathaglobaltech/ag-laravel-sdk

agathaglobaltech/ag-laravel-sdk is a Laravel package for laravel api wrapper for annuities genius. It currently has 0 GitHub stars and 399 downloads on Packagist (latest version v0.0.28). Install it with composer require agathaglobaltech/ag-laravel-sdk. Discover more Laravel packages by agathaglobaltech or browse all Laravel packages to compare alternatives.

Last updated

Laravel API wrapper for Annuities Genius

Latest Version on Packagist GitHub Tests Action Status GitHub Code Style Action Status Total Downloads

This is a Laravel API wrapper for Annuities Genius. It provides a simple way to interact with the Annuities Genius API.

Installation

You can install the package via composer:

composer require agathaglobaltech/ag-laravel-sdk

You can publish the config file with:

php artisan vendor:publish --tag="sdk-config"

This is the contents of the published config file:

return [
    'token' => env('ANNUITIES_GENIUS_TOKEN'),

    'base_url' => env('ANNUITIES_GENIUS_BASE_URL', 'https://app.annuitiesgenius.com/api'),

    'cache' => [
        'enabled' => env('ANNUITIES_GENIUS_CACHE_ENABLED', false),
        'hours' => 24,
    ],
];

Testing

composer test

Changelog

Please see CHANGELOG for more information on what has changed recently.

License

The MIT License (MIT). Please see License File for more information.

Comments