Skip to content

Latest commit

 

History

History
66 lines (42 loc) · 1.95 KB

README.md

File metadata and controls

66 lines (42 loc) · 1.95 KB

Laravel Sevdesk Api

Latest Version on Packagist Total Downloads Test

This package make a connection to the sevdesk api and lets you interact with it.

Sevdesk API Documentation

Installation

You can install the package via composer:

composer require netstack-de/laravel-sevdesk-api

Set your api token in the .env file like this:

SEVDESK_API_TOKEN=xxxxxxxx

Optionally you can publish the config file with:

php artisan vendor:publish --provider="NetstackDE\LaravelSevdeskApi\SevdeskApiServiceProvider" --tag="config"

This is the contents of the published config file:

return [
    /*
     * Api token you from sevdesk. 
     */
    'api_token' => env('SEVDESK_API_TOKEN', ''),
];

Usage

For usage instructions see the Wiki

Changelog

Please see the Releases Tab for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Credits

License

Please see License File for more information.

Laravel Package Boilerplate

This package was generated using the Laravel Package Boilerplate.