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 2d 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 41% of packages

Maintenance33

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

664d 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

[aws/aws-sdk-php

AWS SDK for PHP - Use Amazon Web Services in your PHP project

6.3k543.5M2.6k](/packages/aws-aws-sdk-php)[laravel/framework

The Laravel Framework.

34.8k543.8M20.1k](/packages/laravel-framework)[tempest/framework

The PHP framework that gets out of your way.

2.2k34.4k15](/packages/tempest-framework)[neuron-core/neuron-ai

The PHP Agentic Framework.

2.0k656.1k38](/packages/neuron-core-neuron-ai)[pimcore/pimcore

Content &amp; Product Management Framework (CMS/PIM/E-Commerce)

3.8k3.8M508](/packages/pimcore-pimcore)[shopware/platform

The Shopware e-commerce core

3.4k1.5M3](/packages/shopware-platform)

PHPackages © 2026

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