as247/flysystem-alist

AList Adapter for Flysystem

v3.0.3 2024-05-30 14:41 UTC

This package is auto-updated.

Last update: 2024-08-30 15:13:44 UTC


README

Author Software License

Installation

composer require as247/flysystem-alist

Usage

use As247\Flysystem\AList\AListAdapter;
use League\Flysystem\Filesystem;
$adapter = new AListAdapter('https://your-alist-url.com', [
    'token'=>'your-token',
    'root'=>'/root_path'
]);

$filesystem = new Filesystem($adapter);