Skip to content
This repository has been archived by the owner on Mar 27, 2019. It is now read-only.

orchestral/ftp-updater

Repository files navigation

Extension Updater (via FTP) for Orchestra Platform

Latest Stable Version Total Downloads MIT License Build Status Coverage Status Scrutinizer Quality Score

Table of Content

Installation

To install through composer, simply put the following in your composer.json file:

{
    "require": {
        "orchestra/ftp-updater": "~3.1"
    }
}

And then run composer install from the terminal.

Quick Installation

Above installation can also be simplify by using the following command:

composer require "orchestra/ftp-updater=~3.1"

Configuration

Add following service providers in resources/config/app.php.

'providers' => [

    // ...

    Orchestra\FtpUpdater\UploaderServiceProvider::class,
],