PHPackages                             tigron/skeleton-application-dav - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. tigron/skeleton-application-dav

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

tigron/skeleton-application-dav
===============================

Webdav application for Skeleton

v4(1y ago)0158MITPHP

Since Oct 29Pushed 1y ago3 watchersCompare

[ Source](https://github.com/tigron/skeleton-application-dav)[ Packagist](https://packagist.org/packages/tigron/skeleton-application-dav)[ RSS](/packages/tigron-skeleton-application-dav/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (8)Dependencies (2)Versions (11)Used By (0)

skeleton-application-dav
========================

[](#skeleton-application-dav)

This skeleton applications creates a webdav application in your skeleton project.

Installation
------------

[](#installation)

Installation via composer:

```
composer require tigron/skeleton-application-dav

```

Setup the application
---------------------

[](#setup-the-application)

Your webdav application should follow the following directory structure:

```
- App-directory from skeleton-core
  - Your app name
    - config
    - event
    - fs

```

It is important to understand that every class that is created should be in their correct namespace. The following namespaces should be used:

```
event: \App\{APP_NAME}\Event
fs: \App\{APP_NAME}\Fs

```

Sabre Dav
---------

[](#sabre-dav)

This application uses Sabre Dav to create a webdav server. Your filesystem should contain classes of classname \\Sabre\\DAV\\Collection or \\Sabre\\DAV\\FS\\File

Events
------

[](#events)

Events can be created to perform a task at specific key points during the application's execution.

The class should extend from `Skeleton\Core\Event` and the classname should be within the namespace `\App\APP_NAME\Event\Context`, where `APP_NAME` is the name of your application, and `Context` is one of the available contexts:

- Application
- Dav

The different contexts and their events are described below.

### Application context

[](#application-context)

#### bootstrap

[](#bootstrap)

The bootstrap method is called before loading the application module.

```
public function bootstrap() { }

```

#### teardown

[](#teardown)

The teardown method is called after the application's run is over.

```
public function teardown() { }

```

### Dav context

[](#dav-context)

#### get\_root() {

[](#get_root-)

The get\_root should return the root of your filesystem.

```
public function get_root() { }

```

#### authenticate

[](#authenticate)

The authenticate method is called to authenticate a user.

```
public function authenticate($username, $password) {

```

FS - File System
----------------

[](#fs---file-system)

### File - custom properties

[](#file---custom-properties)

The class that represents a file in the virtual FS (extending \\Sabre\\DAV\\File) can implement

```
public function get_properties() {
    return [ 'prop1' => 'val1', 'prop2' => 'val2' ];
}

```

###  Health Score

31

—

LowBetter than 68% of packages

Maintenance35

Infrequent updates — may be unmaintained

Popularity10

Limited adoption so far

Community13

Small or concentrated contributor base

Maturity56

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 64.3% 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

Every ~115 days

Recently: every ~30 days

Total

10

Last Release

612d ago

Major Versions

v1.0 → 2.x-dev2022-12-09

v2.0 → v3.02023-11-02

### Community

Maintainers

![](https://www.gravatar.com/avatar/8bff1383483dacb0c3f89d2d3856ae03d4cf3e80de26a2998248dd1175317285?d=identicon)[tigron](/maintainers/tigron)

---

Top Contributors

[![christopheg](https://avatars.githubusercontent.com/u/199087?v=4)](https://github.com/christopheg "christopheg (9 commits)")[![LionelLaffineur](https://avatars.githubusercontent.com/u/21120913?v=4)](https://github.com/LionelLaffineur "LionelLaffineur (2 commits)")[![SanderTigron](https://avatars.githubusercontent.com/u/45229883?v=4)](https://github.com/SanderTigron "SanderTigron (2 commits)")[![SanderVanKeer](https://avatars.githubusercontent.com/u/10955678?v=4)](https://github.com/SanderVanKeer "SanderVanKeer (1 commits)")

### Embed Badge

![Health badge](/badges/tigron-skeleton-application-dav/health.svg)

```
[![Health](https://phpackages.com/badges/tigron-skeleton-application-dav/health.svg)](https://phpackages.com/packages/tigron-skeleton-application-dav)
```

###  Alternatives

[workerman/stomp

1010.3k6](/packages/workerman-stomp)

PHPackages © 2026

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