Skip to content

Commit

Permalink
Created a README and updated the composer.json.
Browse files Browse the repository at this point in the history
  • Loading branch information
Briones committed Dec 12, 2017
1 parent f19399d commit 28554f5
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 2 deletions.
37 changes: 37 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# BitsoAPI Wrapper for PHP 7 #

A wrapper for the [Bitso® API] (https://bitso.com/api_info/) made in PHP 7 and Symfony 4

# Motivation #

I'm a Developer that use Bitso as platform for buying and selling Cryptocurrencies,
and Bitso provides an API in order to create new ways to communicate with theirs systems
so I searched for a composer package for abstract the API requests in PHP and
I found the official [bitso-php library] (https://github.com/bitsoex/bitso-php) but seems
that this library is made in old an ugly PHP (the kind of PHP that all we hate)
so I created this project in order to try replicate the functionality but with a better implementation
and new technologies, like PHP 7 and Symfony 4.

I hope this could be useful for someone.

# Installation #
To install the bitso-api-php api wrapper:
`$ composer require briones/bitso-api-php`
or equivalently in your composer.json file:
```json
{
"require": {
"briones/bitsoAPI-php": "master"
}
}
```

# Public API Usage #

```php

use App\Entity\BitsoPublicApi;

$bitsoPrivateApi = new BitsoPublicApi();...

UNDER CONSTRUCTION
14 changes: 12 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
{
"type": "project",
"license": "proprietary",
"name": "briones/bitso-api-php",
"description": "A Wrapper for Bitso API made in PHP 7 and Symfony 4",
"type": "library",
"license": "MIT",
"keywords": ["api","bitso","php"],
"homepage": "https://github.com/Briones/BitsoAPI-PHP",
"authors": [
{
"name": "Roberto Briones",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1.3",
"guzzlehttp/guzzle": "~6.0",
Expand Down

0 comments on commit 28554f5

Please sign in to comment.