PHPackages                             donovanbroquin/flysystem-alfresco - 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. donovanbroquin/flysystem-alfresco

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

donovanbroquin/flysystem-alfresco
=================================

Flysystem driver using Alfresco API

1.0.0(1y ago)03MITPHPPHP ^8.2CI passing

Since Sep 8Pushed 1y ago1 watchersCompare

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

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

Flysystem adapter for Alfresco
==============================

[](#flysystem-adapter-for-alfresco)

[![indicate if the package pass tests](https://github.com/donovanbroquin/flysystem-alfresco/actions/workflows/run_test.yml/badge.svg)](https://github.com/donovanbroquin/flysystem-alfresco/actions/workflows/run_test.yml/badge.svg)

A [flysystem](https://flysystem.thephpleague.com/docs/) v3 adapter to use [Alfresco](https://www.hyland.com/fr/products/alfresco-platform) sites functionality.

Install
-------

[](#install)

> This package is in development stage and not registered in Composer for now

Usage
-----

[](#usage)

### Laravel

[](#laravel)

This package can be used as a Laravel flysystem disk.

```
# app/Providers/AppServiceProvider.php

use Donovanbroquin\FlysystemAlfresco\AlfrescoAdapter;
use Illuminate\Support\Facades\Storage;
use Illuminate\Contracts\Foundation\Application;
use Illuminate\Filesystem\FilesystemAdapter;
use League\Flysystem\Filesystem;

public function boot(): void
{
    Storage::extend('alfresco', function (Application $app, array $config) {
        $adapter = new AlfrescoAdapter($config);

        return new FilesystemAdapter(
            new Filesystem($adapter, $config),
                $adapter,
                $config
        );
    });
}
```

```
# config/filesystems.php

return [
    'disks' => [
        // ...

        'alfresco' => [
            'driver' => 'alfresco',
            'url' => 'https://alfresco.xyz',
            'site' => 'internal',
            'username' => 'username',
            'password' => 'password'
        ]
    ]
]
```

```
Storage::disk('alfresco')->put('test.txt', 'Hello world');
```

Development
-----------

[](#development)

### Test

[](#test)

This package uses [Pest](https://pestphp.com) as test runner.

You can launch it with the following command

```
vendor/bin/pest
```

### Environment

[](#environment)

A development environment is present with the dockerfile and dev container with the package’s needs.

#### Dockerfile directly

[](#dockerfile-directly)

```
docker build -t flysystem-alfresco:latest .
docker run -d -v $(pwd):/var/package -it flysystem-alfresco:latest
```

> Remember that any PHP command, including Composer, must be run from the container.

#### Dev Container

[](#dev-container)

Open the package with your editor. It should ask you to re-open it with Dev Container.

> Works at least with Visual Studio Code and PHPStorm.

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance35

Infrequent updates — may be unmaintained

Popularity3

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity52

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

611d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/f19ae263d9588f1c757caa3ee744a2be9cd25126b6244624bad7bb1064fd2842?d=identicon)[DBroquin](/maintainers/DBroquin)

---

Top Contributors

[![donovanbroquin](https://avatars.githubusercontent.com/u/13528776?v=4)](https://github.com/donovanbroquin "donovanbroquin (35 commits)")

---

Tags

FlysystemAlfrescoflysystem-alfresco

###  Code Quality

TestsPest

Static AnalysisRector

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/donovanbroquin-flysystem-alfresco/health.svg)

```
[![Health](https://phpackages.com/badges/donovanbroquin-flysystem-alfresco/health.svg)](https://phpackages.com/packages/donovanbroquin-flysystem-alfresco)
```

###  Alternatives

[league/flysystem-aws-s3-v3

AWS S3 filesystem adapter for Flysystem.

1.6k263.6M790](/packages/league-flysystem-aws-s3-v3)[masbug/flysystem-google-drive-ext

Flysystem adapter for Google Drive with seamless virtual&lt;=&gt;display path translation

2631.7M14](/packages/masbug-flysystem-google-drive-ext)[league/flysystem-sftp-v3

SFTP filesystem adapter for Flysystem.

6129.6M91](/packages/league-flysystem-sftp-v3)[flarum/core

Delightfully simple forum software.

211.3M1.9k](/packages/flarum-core)[aedart/athenaeum

Athenaeum is a mono repository; a collection of various PHP packages

255.2k](/packages/aedart-athenaeum)[shitware-ltd/flysystem-msgraph

A Flysystem 3.0 adapter for Sharepoint 365 / OneDrive using Microsoft Graph API with support for uploading large files

19360.4k3](/packages/shitware-ltd-flysystem-msgraph)

PHPackages © 2026

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