innobitlab / php-portofino-blob-extractor
A simple php library for access Portofino 4 blob files and metadata
Installs: 30
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 2
pkg:composer/innobitlab/php-portofino-blob-extractor
Requires (Dev)
This package is not auto-updated.
Last update: 2025-10-06 19:43:52 UTC
README
A simple php library for access Portofino 4 blob files and metadata
Installation
Composer
You can install innobitlab/php-portofino-blob-extractor
using composer Dependency Manager.
If you need information about installing composer: http://getcomposer.org/doc/00-intro.md#installation-nix
Add this to your composer.json file:
{
"require": {
"innobitlab/php-portofino-blob-extractor": "dev-master"
}
}
Usage
use \PortofinoBlobExtractor\BlobExtractor; $blobExtractor = new BlobExtractor('path/to/portofino/blobs/dir'); // get the blob data bytes $blobData = $blobExtractor->getBlobData('blobcode'); // get the blob metadata in a easy to use BlobMetadata object $blobMetadata = $blobExtractor->getBlobMetadata('blobcode');