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
Requires
- php: >=5.6.4
 - laravel/passport: ^1.0
 - spatie/laravel-fractal: ^2.0
 
Requires (Dev)
- orchestra/testbench: ~3.3.0
 - phpunit/phpunit: ^5.0
 
This package is not auto-updated.
Last update: 2025-11-03 21:19:50 UTC
README
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.