PHPackages                             fabrizio/laravel-owncloud - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [File &amp; Storage](/categories/file-storage)
4. /
5. fabrizio/laravel-owncloud

ActiveLibrary[File &amp; Storage](/categories/file-storage)

fabrizio/laravel-owncloud
=========================

Laravel 8 OwnCloud Filesystem

04761PHP

Since Nov 12Pushed 4y ago1 watchersCompare

[ Source](https://github.com/F4brizio/laravel-owncloud)[ Packagist](https://packagist.org/packages/fabrizio/laravel-owncloud)[ RSS](/packages/fabrizio-laravel-owncloud/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (2)Used By (0)

laravel-owncloud
================

[](#laravel-owncloud)

Install
-------

[](#install)

Via Composer

```
$ composer require fabrizio/laravel-owncloud
```

Usage
-----

[](#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',
        //example baseUri: 'https://cloud.mydomain.com/remote.php/dav/files/MyCustomUser/'
        'baseUri'  => 'webdav.url',
        //example shareApi: 'https://cloud.mydomain.com/ocs/v1.php/apps/files_sharing/api/v1/shares'
        'shareApi'  => 'something like...ocs/v1.php/apps/files_sharing/api/v1/shares',
        'userName' => 'MyCustomUser',
        'password' => 'secret'
    ],
	...
];
```

Take into account about temporary urls: The expiration time is limited by dates, for example, if it expires on "2021-11-13 05:01:01", it will only take into account "2021-11-13". This limitation is inherent to owncloud.

```
Storage::disk('owncloud')->temporaryUrl('file.jpg', now()->addDay()); //Recognized
Storage::disk('owncloud')->temporaryUrl('file.jpg', now()->addDays(2)); //Recognized
Storage::disk('owncloud')->temporaryUrl('file.jpg', now()->addMinute()); //Ignored
Storage::disk('owncloud')->temporaryUrl('file.jpg', now()->addMinutes(5)); //Ignored
```

###  Health Score

20

—

LowBetter than 14% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity16

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity30

Early-stage or recently created project

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://www.gravatar.com/avatar/3b1fab03d3d3b5166fce903233e80874c9c2875569cd58cf5c4af6df132d3d85?d=identicon)[Fabrizio](/maintainers/Fabrizio)

---

Top Contributors

[![F4brizio](https://avatars.githubusercontent.com/u/68043260?v=4)](https://github.com/F4brizio "F4brizio (7 commits)")

### Embed Badge

![Health badge](/badges/fabrizio-laravel-owncloud/health.svg)

```
[![Health](https://phpackages.com/badges/fabrizio-laravel-owncloud/health.svg)](https://phpackages.com/packages/fabrizio-laravel-owncloud)
```

###  Alternatives

[knplabs/gaufrette

PHP library that provides a filesystem abstraction layer

2.5k39.8M123](/packages/knplabs-gaufrette)[google/cloud-storage

Cloud Storage Client for PHP

34390.8M125](/packages/google-cloud-storage)[illuminate/filesystem

The Illuminate Filesystem package.

15261.6M2.6k](/packages/illuminate-filesystem)[superbalist/flysystem-google-storage

Flysystem adapter for Google Cloud Storage

26320.6M30](/packages/superbalist-flysystem-google-storage)[creocoder/yii2-flysystem

The flysystem extension for the Yii framework

2931.7M62](/packages/creocoder-yii2-flysystem)[flowjs/flow-php-server

PHP library for handling chunk uploads. Works with flow.js html5 file uploads.

2451.6M15](/packages/flowjs-flow-php-server)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
