clickandmortar / remote-bundle
Facilitate files transfer from remote servers
Installs: 814
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 3
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- phpseclib/phpseclib: 2.0.*|3.0.*
README
Remote Bundle is designed to facilitate files transfer from remote server.
Made with 💙 by C&M
Versions
Installation
Download the Bundle
$ composer require clickandmortar/remote-bundle
Enable the Bundle
Enable the bundle by adding it to the list of registered bundles
in the config/bundles.php
file of your project:
<?php return [ ... ClickAndMortar\RemoteBundle\ClickAndMortarRemoteBundle::class => ['all' => true], ... ];
Usage
Download
To download files from a remote server, you can use bundle command:
php bin/console candm:remote:get -t <type> -w <password> -x <newExtension> -d <server> <user> <distantFilePaths> <localDirectory>
Upload
To upload files to a remote server, you can use bundle command:
php bin/console candm:remote:put -t <type> -w <password> -d <server> <user> <localFilePath> <distantFilePath>