Download the PHP package tp5er/think-filesystem without Composer
On this page you can find all versions of the php package tp5er/think-filesystem. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download tp5er/think-filesystem
More information about tp5er/think-filesystem
Files in tp5er/think-filesystem
Download tp5er/think-filesystem
More information about tp5er/think-filesystem
Files in tp5er/think-filesystem
Vendor tp5er
Package think-filesystem
Short Description oss cos qiniu sftp driver for think-filesystem
License MIT
Homepage https://github.com/tp5er/think-filesystem
Package think-filesystem
Short Description oss cos qiniu sftp driver for think-filesystem
License MIT
Homepage https://github.com/tp5er/think-filesystem
Please rate this library. Is it a good library?
Informations about the package think-filesystem
安装
composer require tp5er/think-filesystem
阿里云OSS
安装驱动
composer require xxtime/flysystem-aliyun-oss ^1.5
'oss' => [
'type' => 'oss',
'credentials'=>[//若为false,则使用函数计算 runtime context提供的 credentials
'accessId' => '******',
'accessSecret' => '******',
],
'bucket' => 'bucket',
'endpoint' => 'oss-cn-hangzhou.aliyuncs.com',
'url' => 'oss.domain.com'
],
腾讯COS
安装驱动
composer require overtrue/flysystem-cos ^2.1
'cos' => [
'type' => 'cos',
'region' => '***', //bucket 所属区域 英文
'appId' => '***', // 域名中数字部分
'secretId' => '***',
'secretKey' => '***',
'bucket' => '***',
'timeout' => 60,
'connect_timeout' => 60,
'cdn' => '您的 CDN 域名',
'scheme' => 'https',
'read_from_cdn' => false,
'domain' => 'oss.domain.com',//访问域名
],
七牛云
安装驱动
composer require overtrue/flysystem-qiniu ^1.0
'qiniu' => [
'type' => 'qiniu' ,
'accessKey' => '******',
'secretKey' => '******',
'bucket' => 'bucket',
'domain' => 'oss.domain.com',//不要斜杠结尾,URL地址域名
],
SFTP
安装驱动
composer require league/flysystem-sftp ^1.0
'sftp' => [
'type' => 'sftp',
'host' => '127.0.0.1',
'port' => 22,
'username' => 'root',
'password' => '123456',
'root' => '/home/sftp',
'timeout' => 10,
],
FTP
'ftp' => [
'type' => 'ftp',
'host' => 'ftp.example.com',
'username' => 'username',
'password' => 'password',
'root' => '/path/to/root',
],
All versions of think-filesystem with dependencies
PHP Build Version
Package Version
Requires
php Version
>7.2
The package tp5er/think-filesystem contains the following files
Loading the files please wait ....