Example settings.php configuration
$schemes = []; // Including any other schemes $schemes['swift'] = [ 'driver' => 'swift', 'config' => [ 'authUrl' => '{authUrl}', 'region' => '{region}', 'user' => [ 'id' => '{userId}', 'password' => '{password}' ], 'container' => '{containerName}', 'scope' => ['project' => ['id' => '{projectId}']], // Optional ], ]; $settings['flysystem'] = $schemes;