Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 548 Bytes

File metadata and controls

24 lines (17 loc) · 548 Bytes

Flysystem Adapter for AList

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);