netstack-de / laravel-sevdesk-api
A helpful Sevdesk API client for Laravel.
Installs: 207
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/netstack-de/laravel-sevdesk-api
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.