jostrander / backblaze-b2-client
An implementation of BackBlaze's B2 API in PHP
v0.1-alpha
2015-12-12 07:49 UTC
Requires
- php: >=5.3.3
- guzzlehttp/guzzle: ~6.0
This package is not auto-updated.
Last update: 2024-12-25 19:14:22 UTC
README
A PHP Library to access BackBlaze's B2 API
License: MIT
Requirements:
- PHP 5.3+,
- PHP cURL extension with SSL enabled (it's usually built-in).
Setup
"require": {
"jostrander/backblaze-b2-client": "0.1-alpha"
}
Then:
<?php
use BackBlazeB2\Client as B2Client;
$client = new B2Client($accountId, $applicationKey);
Under Development
As BackBlaze's B2 is still in beta, this project can only be considered alpha and shouldn't be used in production without improvements and proper tests.
Pull requests are welcome.