Skip to content
This repository has been archived by the owner on May 30, 2024. It is now read-only.
/ ceph-client Public archive

Provides a CephClient for storing files in PHP.

Notifications You must be signed in to change notification settings

adrianmihaila/ceph-client

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CephClient Build Status

Provides a CephClient for storing files in PHP.

Installation

composer require adimihaila/ceph-client

Usage

<?php

use Aws\S3\S3Client;
use AdiMihaila\CephClient;

$s3Client = new S3Client([
    'version' => 'latest',
    'region' => '',
    'endpoint' => 'CEPH_ENDPOINT',
    'credentials' => [
        'key' => 'CEPH_KEY',
        'secret' => 'CEPH_SECRET',
    ],
]);

$client = new CephClient($s3Client);

// Create a new bucket.
$bucketName = 'BUCKET_NAME';
$client->createBucket($bucketName);

// Dump all existing buckets.
foreach ($client->getBuckets() as $bucket) {
    var_dump($bucket);
}

// Put a file in the new bucket and dump the result.
$file = 'https://www.google.com/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png';
$result = $client->putFile($bucketName, $file);
var_dump($result);

// Get the new file from bucket and dump the result.
$fileName = basename($file);
$result = $client->getFile($bucketName, $fileName);
var_dump($result);

About

Provides a CephClient for storing files in PHP.

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages