customergauge/minio
最新稳定版本:1.5.0
Composer 安装命令:
composer require customergauge/minio
包简介
Faking S3 storage with Minio
README 文档
README
This library provides a convenient way to write test code that runs against Minio, an S3 compatible storage.
Installation
composer require customergauge/minio
Usage
$minio = new Minio(); $minio->disk('my-bucket', function (S3Client $client, string $bucket) { $this->post('/my/endpoint/that/interacts/with/s3', []) ->assertSuccessful(); $object = $client->getObject([ 'Bucket' => $bucket, 'Key' => "/my/expected/s3/key" ]); $content = $object['Body']->getContents(); $this->assertStringContainsString('partial-file-content', $content); });
Docker Example
minio: image: minio/minio ports: - 9000:9000 environment: - MINIO_ACCESS_KEY=customergauge - MINIO_SECRET_KEY=phpunit123 command: server /data
统计信息
- 总下载量: 21.2k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2020-10-16