infobip-community / infobip-api-php-sdk
PHP SDK package for Infobip API
Installs: 6 505
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 2
Forks: 3
Open Issues: 5
Requires
- php: ^7.2.5 || ^8.0
- guzzlehttp/guzzle: ^7.4
- myclabs/php-enum: ^1.7
Requires (Dev)
- ergebnis/phpstan-rules: ^1.0
- fakerphp/faker: ^1.19
- friendsofphp/php-cs-fixer: 3.4.*
- illuminate/support: 7.*
- mockery/mockery: ^1.3
- overtrue/phplint: ^3.0
- phpoption/phpoption: ^1.8
- phpstan/phpstan: ^1.4
- phpstan/phpstan-mockery: ^1.0
- phpunit/phpunit: ^8.5
- vlucas/phpdotenv: ^4.2
This package is not auto-updated.
Last update: 2024-11-21 02:54:33 UTC
README
This is a PHP SDK for Infobip API and you can use it as a dependency to add Infobip APIs to your application. To use this, you'll need an Infobip account. If you do not own one, you can create a free account here.
Table of contents:
General Info
For infobip-api-php-sdk
versioning we use Semantic Versioning scheme.
License
Published under MIT License.
Compatibility Chart
Installation
To start using the infobip-api-php-sdk
library add it as dependency to your composer.json
project dependency:
composer require infobip-community/infobip-api-php-sdk
Or you can add it manually to composer.json
file:
"require": { "infobip-community/infobip-api-php-sdk": "1.*" }
And then simply run composer install
to download dependencies.
Basic usage
Example on how to create the InfobipClient
instance. You can also define it in your DI Container and get configuration data from the env()
or configuration file.
$infobipClient = new Infobip\InfobipClient( 'apiKey', 'baseUrl', 3 // timeout in seconds, optional parameter );
Example
A simple example of using the InfobipClient
for calling the :
// example 1 $resource = new \Infobip\Resources\WhatsApp\WhatsAppTextMessageResource( '441134960000', '441134960001', new \Infobip\Resources\WhatsApp\Models\TextContent('text message') ); $response = $infobipClient ->whatsApp() ->sendWhatsAppTextMessage($resource);
Exceptions
There is a couple of Infobip exceptions
that you could stumble upon while using the InfobipClient
:
- Bad request (400)
- Unauthorized (401)
- Forbidden (403)
- Not found (404)
- Unprocessable entity (422)
- Too many requests (429)
- Internal server error (500)
Of course, there is a way of handling those:
try { $resource = new WhatsAppTextMessageResource(); $response = $infobipClient ->whatsApp() ->sendWhatsAppTextMessage($resource); } catch (InfobipException $exception) { $exception->getMessage(); // error message $exception->getCode(); // http status code $exception->getValidationErrors(); // array of validation errors, only available on 400 Bad request and 422 Unprocessable entity exceptions }
Laravel
Register the InfobipServiceProvider
in your config/app.php
configuration file:
'providers' => [ // Application Service Providers... // ... // Other Service Providers... Infobip\Support\Laravel\InfobipServiceProvider::class, // ... ],
And then run the following command to copy the Infobip configuration file to your config
directory:
php artisan vendor:publish --provider="Infobip\Support\Laravel\InfobipServiceProvider"
After that, you can start using the Infobip API PHP SDK package in your Laravel project, just inject the InfobipClient
into your codebase:
<?php namespace App\Http\Controllers; use Infobip\InfobipClient; use Infobip\Resources\WhatsApp\WhatsAppTextMessageResource; use Infobip\Resources\WhatsApp\Models\TextContent; final class InfobipController { public function sendTextMessage(Request $request, InfobipClient $infobipClient) { $resource = new WhatsAppTextMessageResource( $request->input('from'), $request->input('to'), new TextContent($request->input('message')) ); $response = $infobipClient ->whatsApp() ->sendWhatsAppTextMessage($resource); return $response; } }
Symfony
Add and bind InfobipClient
to your config/services.yaml
file:
services: Infobip\InfobipClient: arguments: $apiKey: '%infobip.api_key%' $baseUrl: '%infobip.base_url%' $timeout: '%infobip.timeout%'
Documentation
Infobip API Documentation can be found here.
Development
Feel free to participate in this open source project. These are some console commands that could help you with the development like linter, static analysis and coding standards fixer:
vendor/bin/php-cs-fixer fix src vendor/bin/php-cs-fixer fix tests vendor/bin/phplint vendor/bin/phpstan
For running the PHPunit tests:
vendor/bin/phpunit