PHPackages                             loeken/cryptocompare-api-php-wrapper - 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. [API Development](/categories/api)
4. /
5. loeken/cryptocompare-api-php-wrapper

ActiveLibrary[API Development](/categories/api)

loeken/cryptocompare-api-php-wrapper
====================================

Php wrapper class based on guzzle to query the cryptocompare.com api

2.0.1(6y ago)172.7k17BSD-3-ClausePHP

Since Oct 6Pushed 4y ago1 watchersCompare

[ Source](https://github.com/loeken/cryptocompare-api-php-wrapper)[ Packagist](https://packagist.org/packages/loeken/cryptocompare-api-php-wrapper)[ RSS](/packages/loeken-cryptocompare-api-php-wrapper/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (2)Dependencies (3)Versions (5)Used By (0)

cryptocompare-api-php-wrapper
=============================

[](#cryptocompare-api-php-wrapper)

0.) untested
============

[](#0-untested)

I just started rewriting it to match the documentation that can be found on

There are some new endpoints available, some will get deprecated soon. I cleaned this up. Did not test yet. Added base for phpunit based unit tests.

1.) Installation
================

[](#1-installation)

the easiest way to get started is to use composer to retrieve the files.

### prepare composer inside your project folder

[](#prepare-composer-inside-your-project-folder)

The following commands will download the pre compiled composer.phar, which will download the project for us.

```
cd ~/Projectfolder
wget https://getcomposer.org/composer.phar
```

### create composer.json or add to your existing composer.json

[](#create-composerjson-or-add-to-your-existing-composerjson)

#### minimal composer.json

[](#minimal-composerjson)

```
{
  "require": {
    "loeken/cryptocompare-api-php-wrapper": "dev-master"
  }
}

```

#### single line to add composer.json

[](#single-line-to-add-composerjson)

```
    "loeken/cryptocompare-api-php-wrapper": "dev-master",

```

### make composer update from github/packagist

[](#make-composer-update-from-githubpackagist)

```
php composer.phar update
```

### short explanation of composer

[](#short-explanation-of-composer)

composer retrieves the last version of the code from github and downloads it to the vendor/\* folder inside your project. It will also generate a autoload.php which you can then load inside your php code, this will then load all classes included in this project. This is also usefull if you want to update our api wrapper to the last version, simply run the composer update command again.

### including our classes in your files

[](#including-our-classes-in-your-files)

if your .php script file is in the same folder as the vendor folder, use the following line, else adjust the path.

```
