positus/positus-api-laravel-client is a Laravel package for client library for positus apis.
It currently has 9 GitHub stars and 1.831 downloads on Packagist (latest version 0.1.0).
Install it with composer require positus/positus-api-laravel-client.
Discover more Laravel packages by positus
or browse all Laravel packages to compare alternatives.
Last updated
| Positus Client | Laravel ^6.0 | Laravel ^7.0 | Laravel ^8.0 | |----------------|--------------------|--------------------|--------------------| | 0.0.5 | :white_check_mark: | :x: | :x: | | 0.1.0 | :x: | :white_check_mark: | :white_check_mark: |
Use Composer to install it:
composer require positus/positus-api-laravel-client
Publish the configuration file:
php artisan vendor:publish --provider="Positus\Laravel\ClientServiceProvider"
Add the POSITUS_API_TOKEN variable to the .env file
POSITUS_API_TOKEN=token
The Laravel package don't need to create a new instance of the Client. You can simply call the method static.
use Positus\Laravel\Client;
Client::number('your-number-id');
If you don't have an authentication token, click here to generate one.
The authentication token must be placed inside the Positus configuration file.
The documentation follows the same guidelines as the regular php package.
In case you have difficulties, we provide an example video of integration.