All Projects → thephpleague → flysystem-rackspace

thephpleague / flysystem-rackspace

Licence: other
Flysystem Adapter for Rackspace

Programming Languages

PHP
23972 projects - #3 most used programming language

Projects that are alternatives of or similar to flysystem-rackspace

great-migration
Copy objects from Rackspace to S3
Stars: ✭ 15 (-55.88%)
Mutual labels:  rackspace
laravel-filesystem-cos
Tencent Cloud COS storage for Laravel based on overtrue/flysystem-cos.
Stars: ✭ 56 (+64.71%)
Mutual labels:  flysystem-adapter
aliyun-oss-laravel
Laravel 的 Aliyun OSS 扩展, 支持 Laravel 9. Alibaba Cloud Object Storage Service For Laravel.
Stars: ✭ 91 (+167.65%)
Mutual labels:  flysystem-adapter
flysystem-azure-blob-storage
No description or website provided.
Stars: ✭ 52 (+52.94%)
Mutual labels:  flysystem-adapter
librarify-back
Librarify. Creando una API con Symfony 5 es un curso completo sobre Symfony 5 en el que cuento cómo desarrollar una API desde cero empleando FOS Rest Bundle.
Stars: ✭ 30 (-11.76%)
Mutual labels:  flysystem-adapter
flysystem-memory
Flysystem Memory Adapter
Stars: ✭ 62 (+82.35%)
Mutual labels:  flysystem-adapter
rsdns
rackspace DNS tools
Stars: ✭ 55 (+61.76%)
Mutual labels:  rackspace
flysystem-cos
💾 Flysystem adapter for the Qcloud COS storage.
Stars: ✭ 57 (+67.65%)
Mutual labels:  flysystem-adapter

Flysystem Adapter for Rackspace.

Author Build Status Coverage Status Quality Score Software License Packagist Version Total Downloads

Installation

composer require league/flysystem-rackspace

Usage

use OpenCloud\OpenStack;
use OpenCloud\Rackspace;
use League\Flysystem\Filesystem;
use League\Flysystem\Rackspace\RackspaceAdapter as Adapter;

$client = new Rackspace(Rackspace::UK_IDENTITY_ENDPOINT, array(
    'username' => ':username',
    'apiKey' => ':password',
));

$store = $client->objectStoreService('cloudFiles', 'LON');
$container = $store->getContainer('flysystem');

$filesystem = new Filesystem(new Adapter($container));
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].