ozdemir/vuefinder-php

Vuefinder Php Library.

2.0.1 2024-02-27 17:29 UTC

This package is auto-updated.

Last update: 2024-03-27 17:44:00 UTC


README

php serverside library for vuefinder

ezgif-1-b902690b76

frontend (vue3) : https://github.com/n1crack/vuefinder

Installation

composer require ozdemir/vuefinder-php

Usage

require '../vendor/autoload.php';

use Ozdemir\VueFinder\Vuefinder;
use League\Flysystem\Local\LocalFilesystemAdapter;

// Set VueFinder class
$vuefinder = new VueFinder([
    'local' => new LocalFilesystemAdapter(dirname(__DIR__).'/storage'),
    'test' =>  new LocalFilesystemAdapter(dirname(__DIR__).'/test'),
]);


$config = [
    'publicLinks' => [
        'local://public' => 'http://example.test',
    ],
];

// Perform the class
$vuefinder->init($config);