nextgen-tech/laravel-nextcloud-driver

Laravel Nextcloud Filesystem Driver

v1.0.0 2021-10-15 13:13 UTC

This package is auto-updated.

Last update: 2024-04-15 18:43:31 UTC


README

Based on pbmedia/laravel-webdav, fork of jedlikowski/laravel-nextcloud.

Installation

composer require nextgen-tech/laravel-nextcloud-driver

Usage

Create a Nextcloud filesystem disk:

// config/filesystems.php

'disks' => [
    ...
    'nextcloud' => [
        'driver'   => 'nextcloud',
        'url'      => env('NEXTCLOUD_URL', ''),
        'user'     => env('NEXTCLOUD_USER', ''),
        'password' => env('NEXTCLOUD_PASSWORD'),
        'proxy'    => env('NEXTCLOUD_PROXY'),
        'encoding' => env('NEXTCLOUD_ENCODING'),
    ],
    ...
];

Add variables to .env file:

NEXTCLOUD_URL=
NEXTCLOUD_USER=
NEXTCLOUD_PASSWORD=
NEXTCLOUD_PROXY=
NEXTCLOUD_ENCODING=