PHP code example of wgr / flysystem-infomaniak

1. Go to this page and download the library: Download wgr/flysystem-infomaniak library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

wgr / flysystem-infomaniak example snippets


// CONFIG
$osClient = new \Wgr\Flysystem\Infomaniak\Http\OpenStackClient\OpenStackClient([
  'authUrl' => 'https://api.pub1.infomaniak.cloud/identity/v3',
  'region'  => 'dc3-a',
  'application_credential' => [
    'id' => 'XXXX',
    'secret' => "XXX",
  ],
  'scope'   => ['project' => ['id' => 'XXX']]
]);

// SETUP
$adapter = new \Wgr\Flysystem\Infomaniak\Adapter\OpenStack($osClient,'my-container','myFolder');
$filesystem = new \League\Flysystem\Filesystem($adapter);

// USAGE
$filesystem->write($path, $contents);