lbryio/php-api

LBRY API

Maintainers

Package info

github.com/lbryio/php-api

pkg:composer/lbryio/php-api

Statistics

Installs: 853

Dependents: 0

Suggesters: 0

Stars: 10

Open Issues: 0

v1.2.2 2018-01-23 21:54 UTC

This package is not auto-updated.

Last update: 2026-03-15 10:27:52 UTC


README

Installation

composer require lbryio/php-api

Example

<?php

require_once __DIR__.'/vendor/autoload.php';

try
{
  $claims = lbry\DaemonApi::call('claim_list', ['name' => 'bellflower']);
  var_export($claims);
}
catch (lbry\Exception $e)
{
  echo $e->getMessage() . "\n";
}

License

MIT