PHPackages                             zerosdev/kirimwa-php-client - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. zerosdev/kirimwa-php-client

ActiveLibrary[API Development](/categories/api)

zerosdev/kirimwa-php-client
===========================

Client SDK Library for Kirimwa.cloud

v1.1.0(4y ago)1382↓77.8%2MITPHPPHP &gt;=5.6

Since May 29Pushed 4y ago1 watchersCompare

[ Source](https://github.com/zerosdev/kirimwa-php-client)[ Packagist](https://packagist.org/packages/zerosdev/kirimwa-php-client)[ Docs](https://kirimwa.cloud)[ RSS](/packages/zerosdev-kirimwa-php-client/feed)WikiDiscussions 1.x Synced 1w ago

READMEChangelog (3)Dependencies (2)Versions (5)Used By (0)

KirimWA PHP Client
==================

[](#kirimwa-php-client)

Client SDK Library for Kirimwa.cloud Server Application

Requirements
------------

[](#requirements)

- PHP 5.6+
- PHP JSON Extension
- [Guzzle, PHP HTTP Client](https://github.com/guzzle/guzzle)

Installation
------------

[](#installation)

1. Run command

```
composer require zerosdev/kirimwa-php-client
```

### The following steps only needed if you are using Laravel

[](#the-following-steps-only-needed-if-you-are-using-laravel)

> For installation on Laravel 5.5+, **SKIP steps 2 &amp; 3** because we have used the Package Discovery feature, Laravel will automatically register the Service Provider and Alias during installation.

2. Open your **config/app.php** and add this code to the providers array, it will looks like:

```
'providers' => [

      // other providers

      ZerosDev\KirimWA\Laravel\ServiceProvider::class,

],
```

3. Add this code to your class aliases array

```
'aliases' => [

      // other aliases

      'KirimWA' => ZerosDev\KirimWA\Laravel\Facade::class,

],
```

4. Run command

```
composer dump-autoload
```

5. Then

```
php artisan vendor:publish --provider="ZerosDev\KirimWA\Laravel\ServiceProvider"
```

6. Edit **config/kirimwa.php** and put your KirimWA Server information like API host and sender list

Basic Usage
-----------

[](#basic-usage)

### Laravel Usage

[](#laravel-usage)

```
