sqits/laravel-gripp

Laravel wrapper for the gripp api

0.1 2019-09-03 09:20 UTC

This package is auto-updated.

Last update: 2024-06-09 21:00:40 UTC


README

Installation and usage

This package requires PHP 7.2 and Laravel 5.6 or higher. Install the package by running the following command in your console;

composer require sqits/laravel-gripp --dev

You can publish the config file with:

php artisan vendor:publish --provider="Sqits\Gripp\GrippServiceProvider" --tag="config"

This is the contents of the published config file:

return [

    /*
     * Define the default Gripp api uri.
     */

    'domain' => env('GRIPP_DOMAIN', 'https://api.gripp.com/'),
    
    /*
     * Define the Gripp api key.
     */

    'api_key' => env('GRIPP_API_KEY', null),
];

Changelog

Please see CHANGELOG for more information what has changed recently.

Security

If you discover any security-related issues, please email to info@sqits.nl instead of using the issue tracker.

Credits

License

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