hawksalot/php-ipfs

php interface for Go-IPFS HTTP API functions

v0.1.6 2017-09-13 17:08 UTC

This package is not auto-updated.

Last update: 2025-06-08 07:45:57 UTC


README

Getting Started

Prerequisites

Installing

Install from Packagist:

composer require hawksalot/php-ipfs

How to Use

To use an API function, call it using camel case.

log/level becomes logLevel:

Ipfs::logLevel();

object/patch/add-link becomes objectPatchAddLink:

Ipfs::objectPatchAddLink($exampleNode, $exampleName, $exampleHash);

Examples

Testing

// TODO