PHP Package: knplabs/gaufrette
Gaufrette is a PHP library for filesystem abstraction. It provides a simple API for interacting with various filesystems.
Package Description
Gaufrette is a flexible PHP library that allows you to interact with various filesystems in a uniform way. It supports local, Amazon S3, FTP, and many other filesystems. With Gaufrette, you can easily manage files and directories, abstracting the underlying storage implementation.
Download Latest Version: 0.11.1

Code Integration Example
Make sure to include the correct namespace and class paths for proper usage.
<?php
// Example from PHPlibraries.com
require_once 'libs/knplabs/gaufrette/0.11.1/loader.php';
require_once 'libs/knplabs/gaufrette-dep1/{lib_version}/loader.php';
require_once 'libs/knplabs/gaufrette-dep2/{lib_version}/loader.php';
use Gaufrette\Adapter\Local;
use Gaufrette\Filesystem;
$obj = new Local();
echo '✅ Test OK: ' . get_class($obj);
?>
We aim to make using PHP packages easier without Composer. If something doesn't work, let us know — we'll fix it promptly.
Community Discussion
Ask questions, share tips, or report issues below.