%PDF- %PDF-
Direktori : /home/graphicd/public_html/vebto/vendor/league/flysystem-rackspace/ |
Current File : /home/graphicd/public_html/vebto/vendor/league/flysystem-rackspace/readme.md |
# Flysystem Adapter for Rackspace. [](https://twitter.com/frankdejonge) [](https://travis-ci.org/thephpleague/flysystem-rackspace) [](https://scrutinizer-ci.com/g/thephpleague/flysystem-rackspace/code-structure) [](https://scrutinizer-ci.com/g/thephpleague/flysystem-rackspace) [](LICENSE) [](https://packagist.org/packages/league/flysystem-rackspace) [](https://packagist.org/packages/league/flysystem-rackspace) ## Installation ```bash composer require league/flysystem-rackspace ``` ## Usage ```php 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)); ```