wgr /flysystem-infomaniak
此包最新版本(1.0.2)没有可用的许可证信息。
infomaniak 的 flysystem
1.0.2
2022-08-04 14:32 UTC
Requires
- php: >=7.1
- league/flysystem: ^1.0.40
- league/flysystem-webdav: ^1.0.10
- php-opencloud/openstack: ^3.2
Requires (Dev)
README
⚠️ 这是一个子拆分,对于拉取请求和问题,请访问: https://github.com/thephpleague/flysystem
composer require wgr/flysystem-infomaniak
公有云
// 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);
更多文档即将到来