netstack-de / laravel-sevdesk-api
A helpful Sevdesk API client for Laravel.
v0.1.6
2023-04-17 11:04 UTC
Requires
- php: ^7.2|^8.0
- guzzlehttp/guzzle: ^7.2
Requires (Dev)
- orchestra/testbench: ^6.0
- phpunit/phpunit: ^9.0
README
This package make a connection to the sevdesk api and lets you interact with it.
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.