abdullahhafizh / laravel-owncloud
Laravel 7 OwnCloud Filesystem
Installs: 29
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/abdullahhafizh/laravel-owncloud
Requires
- php: ~7.0
- abdullahhafizh/flysystem-owncloud: >=1.0
README
Install
Via Composer
$ composer require abdullahhafizh/laravel-owncloud
Usage
Register the service provider in your app.php config file:
// config/app.php 'providers' => [ ... League\Flysystem\OwnCloud\OwnCloudServiceProvider::class ... ];
Create a owncloud filesystem disk:
// config/filesystems.php 'disks' => [ ... 'owncloud' => [ 'driver' => 'owncloud', 'baseUri' => 'webdav.url', 'shareApi' => 'something like...ocs/v1.php/apps/files_sharing/api/v1/shares', 'userName' => 'secret', 'password' => 'secret' ], ... ];