lovexjho / flysystem-tos-oss
给hyperf文件系统添加火山引擎对象存储支持
1.0.0
2024-07-26 04:56 UTC
Requires
- php: >=8.1
- league/flysystem: ^3.28
- volcengine/ve-tos-php-sdk: ^2.1
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.0
- mockery/mockery: ^1.0
- phpstan/phpstan: ^1.0
- phpunit/phpunit: ^10.0
- swoole/ide-helper: dev-master
Suggests
- swow/swow: Required to create swow components.
README
config\file.php
中,添加tos
配置
'tos' => [ 'driver' => TosAdapterFactory::class, 'region' => env('TOS_REGION'), 'bucket' => env('TOS_BUCKET'), 'endpoint' => env('TOS_ENDPOINT'), 'ak' => env('AK'), 'sk' => env('SK'), 'securityToken' => env('SECURITY_TOKEN'), 'connectionTimeout' => 10000, // 毫秒 'socketTimeout' => 30000, // 毫秒, 'enableVerifySSL' => true ]
tos预签名
$filesystemFactory = make(\Hyperf\Filesystem\FilesystemFactory::class); $tos = $filesystemFactory->getAdapter('tos'); $preSign = $tos->preSignedURL($path, new \League\Flysystem\Config([ 'httpMethod' => \Tos\Model\Enum::HttpMethodPut, 'expires' => 3600 ])); var_dump($preSign);
引用项目地址: jiangwang/flysystem-tos