imbo / imbo-b2-adapters
B2 adapters for Imbo
dev-main
2025-04-03 13:57 UTC
Requires
- php: >=8.3
- guzzlehttp/guzzle: ^7.3
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.75
- imbo/imbo: dev-main
- imbo/imbo-adapters-sdk: dev-main
- imbo/imbo-coding-standard: ^2.0
- phpstan/extension-installer: ^1.4
- phpstan/phpstan: ^2.1
- phpstan/phpstan-deprecation-rules: ^2.0
- phpstan/phpstan-phpunit: ^2.0
- phpunit/phpunit: ^12.0
- symfony/var-dumper: ^7.2
This package is auto-updated.
Last update: 2025-04-03 13:58:03 UTC
README
B2 storage adapter for Imbo.
Installation
composer require imbo/imbo-b2-adapters
Usage
Create the adapter using a key ID, an application key, a bucket ID, and a bucket name. You can get access to this information in your B2 account.
use Imbo\Storage\B2; $adapter = new B2($keyId, $applicationKey, $bucketId, $bucketName);
Running integration tests
If you want to run the integration tests for this adapter you need to export the following environment variables:
B2_KEY_ID
B2_APPLICATION_KEY
B2_BUCKET_ID
B2_BUCKET_NAME
You will also need to copy phpunit.dist.xml
to phpunit.xml
and comment out or remove the part in the configuration that excludes the integration test group.
Warning: The integration tests will empty the specified bucket, so if you intend to run the integration tests you should create a dedicated bucket for this purpose.
License
MIT, see LICENSE.