hawksalot / php-ipfs
php interface for Go-IPFS HTTP API functions
v0.1.6
2017-09-13 17:08 UTC
Requires
- guzzlehttp/guzzle: ^6.3
Requires (Dev)
- phpunit/phpunit: ^6.3
This package is not auto-updated.
Last update: 2025-06-08 07:45:57 UTC
README
Getting Started
Prerequisites
- PHP >=7.1
- IPFS >=0.4.10
- Composer
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