didbot/didbot-api

API for didbot.com

Installs: 12

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/didbot/didbot-api

0.2.1 2016-11-30 15:38 UTC

This package is not auto-updated.

Last update: 2025-10-20 21:13:24 UTC


README

Build Status API for didbot.com or a self hosted didbot application.

Installation

Install the package via composer:

composer require didbot/didbot-api

Add the service provider to the config/app.php providers array

// config/app.php
'providers' => [
    ...
    Didbot\DidbotApi\ApiServiceProvider::class
];

Finally add the Didbot\DidbotApi\Traits\HasDids trait to the User model.

use Didbot\DidbotApi\Traits\HasDids;

class User
{
    use HasDids;

    // ...
}

Database

To take advantage of full text search the recommended database is postgresql.