Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/moudarir/binga

PHP library for integration with the Binga.ma API in a fast and simple way.
https://github.com/moudarir/binga

api-client binga-ma composer php php-library sdk sdk-php wafacash

Last synced: 27 days ago
JSON representation

PHP library for integration with the Binga.ma API in a fast and simple way.

Awesome Lists containing this project

README

        

![Binga logo](http://binga.ma/img/images/logo.png)

# PHP Library for Binga.ma
[![license](https://img.shields.io/github/license/mashape/apistatus.svg)](https://github.com/moudarir/binga/blob/master/LICENSE)

PHP library for integration with the Binga.ma API (v1.1) in a fast and simple way.

## Requirements
PHP => 7.2+
Composer

## Installation
> **NOTE:** this version 1.1.* requires php 7.2+ ([php supported versions](http://php.net/supported-versions.php))

The best way to install the library is to use [Composer](https://getcomposer.org/)

If you haven't started using composer, I highly recommend you to use it.

In your `composer.json` file located at the root of your project, add the following code:

{
"require": {
"moudarir/binga": "^1.1"
}
}

And then run:

```
composer install
```

Or just run :

```
composer require moudarir/binga
```

Add the autoloader to your project:

```php