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' => 'https://mdzx.ahxc.net', ], ]; // Perform the class $vuefinder->init($config);