as247/flysystem-alist

AList Adapter for Flysystem

v3.0.2 2024-03-01 10:49 UTC

This package is auto-updated.

Last update: 2024-04-30 11:14:02 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);