Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alfacashier/alfacashier-api-php
PHP Library for interacting with the ALFAcashier API.
https://github.com/alfacashier/alfacashier-api-php
alfacashier api bitcoin bitcoincash cryptocurrency dash ethereum ethereum-classic exchange litecoin monero nem php stellar xrp zcash
Last synced: 16 days ago
JSON representation
PHP Library for interacting with the ALFAcashier API.
- Host: GitHub
- URL: https://github.com/alfacashier/alfacashier-api-php
- Owner: ALFAcashier
- License: mit
- Created: 2018-09-10T09:26:28.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2018-10-03T14:26:09.000Z (about 6 years ago)
- Last Synced: 2024-10-17T06:05:35.194Z (about 1 month ago)
- Topics: alfacashier, api, bitcoin, bitcoincash, cryptocurrency, dash, ethereum, ethereum-classic, exchange, litecoin, monero, nem, php, stellar, xrp, zcash
- Language: PHP
- Size: 6.84 KB
- Stars: 2
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Description
**alfacashier-api-php** is a PHP Library for interacting with [ALFAcashier API](https://www.alfacashier.com/developers).
**alfacashier-api-php** provides instant automatic cryptocurrency exchange integration on your website via [ALFAcashier](https://www.alfacashier.com).
**alfacashier-api-php** allows you to integrate instant automatic exchange of the following cryptocurrencies:
* Bitcoin (BTC)
* Ethereum (ETH)
* XRP (XRP)
* Bitcoin Cash (BCH)
* Litecoin (LTC)
* Zcash (ZEC)
* Dash (DASH)
* Monero (XMR)
* NEM (XEM)
* Stellar (XLM)
* Ethereum Classic (ETC)## Installation
alfacashier-api-php is available on [Packagist](https://packagist.org/packages/alfacashier/alfacashier-api-php) (using semantic versioning), and installation via [composer](https://getcomposer.org) is the recommended way to install alfacashier-api-php. Just add this line to your `composer.json` file:
```json
"alfacashier/alfacashier-api-php": "~v1.0"
```or run
```sh
composer require alfacashier/alfacashier-api-php
```Note that the `vendor` folder and the `vendor/autoload.php` script are generated by composer; they are not part of alfacashier-api-php.
Alternatively, if you're not using composer, copy the contents of the alfacashier-api-php folder somewhere and load each class file manually:
```php