djordje/filebrowser

File browser for PHP

dev-master 2013-11-01 17:04 UTC

This package is not auto-updated.

Last update: 2024-04-22 23:31:03 UTC


README

Build Status

Filebrowser is simple interface for manipulating files within your PHP application.

The idea is to enable easy manipulation with familiar syntax:

$repository->ls($path);
$repository->mkdir($path);
$repository->remove($path);
$repository->isDir($path);
$repository->copy($source, $destination);
$repository->move($source, $destination);
$repository->upload($uploadedFile, $destination);
Installation

Recommanded installation is trough composer, add to your composer.json:

"require": {
	"djordje/filebrowser": "dev-master"
}

Currently supported repositories:

  • LocalFilesystem
Released under MIT licence.