hawksalot / php-ipfs
php interface for Go-IPFS HTTP API functions
Installs: 35
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 0
Forks: 0
Open Issues: 1
pkg:composer/hawksalot/php-ipfs
Requires
- guzzlehttp/guzzle: ^6.3
Requires (Dev)
- phpunit/phpunit: ^6.3
This package is not auto-updated.
Last update: 2025-10-26 09:29:56 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