PHPackages                             biigle/laravel-dcache - 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. biigle/laravel-dcache

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

biigle/laravel-dcache
=====================

v1.0(5mo ago)03MITPHPPHP ^8.1

Since Dec 11Pushed 3mo agoCompare

[ Source](https://github.com/biigle/laravel-dcache)[ Packagist](https://packagist.org/packages/biigle/laravel-dcache)[ Docs](https://github.com/biigle/laravel-dcache)[ RSS](/packages/biigle-laravel-dcache/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (1)Dependencies (2)Versions (2)Used By (0)

Laravel dCache
==============

[](#laravel-dcache)

A dCache filesystem driver for Laravel.

### Installation

[](#installation)

```
composer require biigle/laravel-dcache
```

Usage
-----

[](#usage)

### Add the new entries to your `.env`

[](#add-the-new-entries-to-your-env)

```
DCACHE_BASEURL=""
DCACHE_USERNAME=
DCACHE_PASSWORD=

# or as alternative to username and password a bearer token:
DCACHE_TOKEN=

# Optional
DCACHE_PROXY=
DCACHE_PATHPREFIX=""
DCACHE_AUTHTYPE=
DCACHE_ENCODING=
```

### Add the new entries to the config

[](#add-the-new-entries-to-the-config)

`config/filesystems.php`

```
'disks' => [
    ...
    'dcache' => [
        'driver'     => 'dcache',
        'baseUri'    => env("DCACHE_BASEURL"),
        'userName'   => env("DCACHE_USERNAME"),
        'password'   => env("DCACHE_PASSWORD"),
        'pathPrefix' => env("DCACHE_PATHPREFIX", ''),

        // Alternative to userName and password
        'token'   => env("DCACHE_TOKEN"),

        // Optional prameters
        // 'proxy'      => env("DCACHE_PROXY", 'locahost:8888'),
        // 'authType'   => env("DCACHE_AUTHTYPE", null),
        // 'encoding'   => env("DCACHE_ENCODING", null),
    ],
    ...
];
```

After adding the config entry you can use it in your storage driver.

[Laravel filesystem](https://laravel.com/docs/master/filesystem)

```
Storage::disk('dcache')->files('...')
```

Config
------

[](#config)

The driver uses the WebDAV driver under the hood. See [biigle/laravel-webdav](https://github.com/biigle/laravel-webdav/tree/main?tab=readme-ov-file#config) for the available config options.

###  Health Score

34

—

LowBetter than 77% of packages

Maintenance76

Regular maintenance activity

Popularity3

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity43

Maturing project, gaining track record

 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.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

152d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/2457311?v=4)[Martin Zurowietz](/maintainers/mzur)[@mzur](https://github.com/mzur)

---

Top Contributors

[![mzur](https://avatars.githubusercontent.com/u/2457311?v=4)](https://github.com/mzur "mzur (3 commits)")

---

Tags

filesystemFlysystemlaraveldcache

### Embed Badge

![Health badge](/badges/biigle-laravel-dcache/health.svg)

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

###  Alternatives

[sausin/laravel-ovh

OVH Object Storage driver for laravel

40153.5k](/packages/sausin-laravel-ovh)[gliterd/laravel-backblaze-b2

Backblaze B2 Cloud Storage for Laravel 5

5341.6k](/packages/gliterd-laravel-backblaze-b2)[singlequote/laravel-webdav

1344.8k](/packages/singlequote-laravel-webdav)[jerodev/flysystem-v3-smb-adapter

SMB adapter for Flysystem v3

1289.9k1](/packages/jerodev-flysystem-v3-smb-adapter)[bringyourownideas/laravel-backblaze

Backblaze B2 Cloud Storage for Laravel 5. Original by Paul Olthof (@hpolthof) continued by @bringyourownideas

1237.8k](/packages/bringyourownideas-laravel-backblaze)[hpolthof/laravel-backblaze

Backblaze B2 Cloud Storage for Laravel 5

1220.3k](/packages/hpolthof-laravel-backblaze)

PHPackages © 2026

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