beknazar312/laravel-nextcloud

There is no license information available for the latest version (dev-main) of this package.

Laravel 9 NextCloud Filesystem

dev-main 2022-12-13 06:51 UTC

This package is auto-updated.

Last update: 2024-04-13 09:38:33 UTC


README

Based on https://github.com/jedlikowski/laravel-nextcloud

Install

Via Composer

$ composer require beknazar312/laravel-nextcloud

Usage

Register the service provider in your app.php config file:

// config/app.php

'providers' => [
    ...
    Jedlikowski\NextCloudStorage\NextCloudServiceProvider::class
    ...
];

Create a NextCloud filesystem disk:

// config/filesystems.php

'disks' => [
	...
	'nextcloud' => [
	    'driver'     => 'nextcloud',
	    'baseUri'    => 'https://mywebdavstorage.com',
	    'userName'   => 'johndoe',
	    'password'   => 'secret',
	    'pathPrefix' => '', // provide a subfolder name if your NextCloud instance isn't running directly on a domain, e.g. https://example.com/drive
	],
	...
];

Security

If you discover any security related issues, please email jakub.jedlikowski@gmail.com instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.