Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/moudarir/binga
- Owner: moudarir
- License: mit
- Created: 2018-12-01T17:25:01.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2024-03-20T03:04:57.000Z (8 months ago)
- Last Synced: 2024-07-21T06:48:08.238Z (4 months ago)
- Topics: api-client, binga-ma, composer, php, php-library, sdk, sdk-php, wafacash
- Language: PHP
- Homepage:
- Size: 42 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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