PHPackages                             beakerboy/cashid-library - 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. [Authentication &amp; Authorization](/categories/authentication)
4. /
5. beakerboy/cashid-library

ActiveLibrary[Authentication &amp; Authorization](/categories/authentication)

beakerboy/cashid-library
========================

CashID library for PHP

v0.1.0(6y ago)32[1 PRs](https://github.com/Beakerboy/CashID/pulls)MITPHPPHP &gt;=7.0.0

Since Jun 27Pushed 5y ago1 watchersCompare

[ Source](https://github.com/Beakerboy/CashID)[ Packagist](https://packagist.org/packages/beakerboy/cashid-library)[ RSS](/packages/beakerboy-cashid-library/feed)WikiDiscussions master Synced yesterday

READMEChangelog (1)Dependencies (5)Versions (4)Used By (0)

CashID PHP library
==================

[](#cashid-php-library)

[![Build Status](https://camo.githubusercontent.com/e9b536519a91ef1c898bb5d1caa73ed9d80d43352d7a4c258b287fc3777d725c/68747470733a2f2f7472617669732d63692e6f72672f4265616b6572626f792f4361736849442e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/Beakerboy/CashID)[![Coverage Status](https://camo.githubusercontent.com/34d2d2e4952ea296583e3150ccaa74d9951266d9177b43cfae1c6c337e3a50b3/68747470733a2f2f636f766572616c6c732e696f2f7265706f732f6769746875622f4265616b6572626f792f4361736849442f62616467652e7376673f6272616e63683d6d6173746572)](https://coveralls.io/github/Beakerboy/CashID?branch=master)[![Documentation](https://camo.githubusercontent.com/6e8a0c08b22616f301ea5d05c3ab1d3736b0a4787f4490c81a399b16ffd35d84/68747470733a2f2f636f6465646f63732e78797a2f4265616b6572626f792f4361736849442e737667)](https://codedocs.xyz/Beakerboy/CashID/)

Dependencies
------------

[](#dependencies)

- Any PSR-16 compatible cache (such as paillechat/apcu-simple-cache)
- BitcoinPHP ECDSA Library
- CashaddrConverter

Specifications
--------------

[](#specifications)

- CashID API ()

Setup
-----

[](#setup)

Add this library and your selection of cache implementations to your `composer.json` file in your project:

```
{
  "require": {
      "beakerboy/cashid-library": "0.*",
      "paillechat/apcu-simple-cache": "*"
  }
}
```

Use [composer](http://getcomposer.org) to install the library:

```
$ php composer.phar install
```

Composer will install CashID inside your vendor folder. Then you can add the following to your .php files to use the library with Autoloading.

```
require_once(__DIR__ . '/vendor/autoload.php');
```

Alternatively, use composer on the command line to require and install CashID:

```
$ php composer.phar require beakerboy/cashid-library:0.* paillechat/apcu-simple-cache:*

```

### Minimum Requirements

[](#minimum-requirements)

- PHP 7.1

Examples
--------

[](#examples)

### Create CashID request

[](#create-cashid-request)

```
