This repository was archived by the owner on Dec 1, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +4
-0
lines changed Expand file tree Collapse file tree 3 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ Yii 2 File Storage extension Change Log
5
5
-----------------------
6
6
7
7
- Enh #4 : Added ` yii2tech\filestorage\BucketInterface::openFile() ` allowing to open file as a PHP resource (klimov-paul)
8
+ - Enh #6 : SFTP file storage implemented via ` yii2tech\filestorage\sftp\Storage ` (klimov-paul)
8
9
- Enh #7 : Usage of URL routes for ` BucketInterface::getFileUrl() ` provided (klimov-paul)
9
10
10
11
Original file line number Diff line number Diff line change @@ -112,6 +112,7 @@ echo $bucket->getFileUrl('file.txt'); // outputs: 'http://domain.com/files/f/i/f
112
112
113
113
Following file storages are available with this extension:
114
114
- [[ \yii2tech\filestorage\local\Storage]] - stores files on the OS local file system.
115
+ - [[ \yii2tech\filestorage\sftp\Storage]] - stores files using SSH2 SFTP.
115
116
- [[ \yii2tech\filestorage\amazon\Storage]] - stores files using Amazon simple storage service (S3).
116
117
- [[ \yii2tech\filestorage\mongodb\Storage]] - stores files using MongoDB GridFS.
117
118
- [[ \yii2tech\filestorage\hub\Storage]] - allows combination of different file storages.
Original file line number Diff line number Diff line change 13
13
/**
14
14
* Storage introduces the file storage based on the SSH2 SFTP
15
15
*
16
+ * This storage requires [PHP ssh2 extension](http://php.net/manual/en/book.ssh2.php) to be installed.
17
+ *
16
18
* @see Connection
17
19
*
18
20
* @property resource $sftp related SFTP subsystem session.
You can’t perform that action at this time.
0 commit comments