PHPackages                             anzilsystems/beba-laravel-sdk - 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. anzilsystems/beba-laravel-sdk

ActiveLibrary

anzilsystems/beba-laravel-sdk
=============================

Beba API Laravel Wrapper

261PHP

Since Dec 13Pushed 6y ago1 watchersCompare

[ Source](https://github.com/anzilsystems/beba-laravel-sdk)[ Packagist](https://packagist.org/packages/anzilsystems/beba-laravel-sdk)[ RSS](/packages/anzilsystems-beba-laravel-sdk/feed)WikiDiscussions master Synced yesterday

READMEChangelogDependenciesVersions (1)Used By (0)

beba Shipping API
=================

[](#beba-shipping-api)

This is a Laravel library for implementing Pickup and Delivery Services in Kenya and Ghana on the `beba` API. The package uses REST API that is documented on this [link](https://www.pikieglobal.com/docs). This is developed on sandbox (testing) mode. To go live contact `Anzil Software Ltd` on .

### Introduction

[](#introduction)

BebaAPI is a product of [Anzil Software Ltd](https://www.anzilsystems.com) that provides an elaborate API to allow developers, shipping companies, and e-commerce stores integrate pickup and delivery functionality into their applications. [PikieGlobal](https://www.pikieglobal.com) implements bebaAPI to provide a reliable platform for delivering products to customers from virtually any online shop or business through our network of courier companies and riders. Pikie intends to create a network of Partners throughout Africa to expand its reach to millions of customers intending to transport cargo within a country (inland).

### Configuration

[](#configuration)

At your project root, create a .env file and in it set the client key, client secret and endpoint url

`BEBA_CLIENT_KEY= [client key]`
`BEBA_CLIENT_SECRET =[client secret]`
`BEBA_ENDPOINT_URL =[endpoint url]`
`BEBA_ENV=[live or sandbox]`

### Installation

[](#installation)

1. In order to install beba Library, just run `composer require anzilsystems/beba-laravel-sdk`:
2. Open your `config/app.php` and add the following to the to the `providers` and `aliases` array. When using Laravel 5.5+, the package will automatically register. For Laravel 5.4 and below, include the service provider and its alias within your `config/app.php`:

    ```
    'providers' => [
        AnzilSystems\Beba\BebaServiceProvider::class,
    ],

    'aliases' => [
        'Beba' =>  AnzilSystems\Beba\BebaFacade::class,
    ],
    ```

### Usage

[](#usage)

```
