clickandmortar/remote-bundle

Facilitate files transfer from remote servers

Installs: 788

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 3

Forks: 0

Open Issues: 0

Type:symfony-bundle

5.4.3 2023-05-02 09:35 UTC

This package is auto-updated.

Last update: 2024-05-01 00:09:28 UTC


README

Remote Bundle is designed to facilitate files transfer from remote server.

Made with 💙 by C&M

Versions

Bundle version Symfony version
v5.4.* v5.4.*
v1.1.* v4..
v1.0.* v3..

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>