├── .gitignore ├── LICENSE ├── README.md ├── composer.json └── lib ├── fal.php └── fal ├── dropbox.php ├── filestream.php ├── filesystem.php ├── ftp.php ├── localfs.php ├── metafilestorage.php └── metastorageinterface.php /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea/ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikkez/f3-fal/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikkez/f3-fal/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikkez/f3-fal/HEAD/composer.json -------------------------------------------------------------------------------- /lib/fal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikkez/f3-fal/HEAD/lib/fal.php -------------------------------------------------------------------------------- /lib/fal/dropbox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikkez/f3-fal/HEAD/lib/fal/dropbox.php -------------------------------------------------------------------------------- /lib/fal/filestream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikkez/f3-fal/HEAD/lib/fal/filestream.php -------------------------------------------------------------------------------- /lib/fal/filesystem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikkez/f3-fal/HEAD/lib/fal/filesystem.php -------------------------------------------------------------------------------- /lib/fal/ftp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikkez/f3-fal/HEAD/lib/fal/ftp.php -------------------------------------------------------------------------------- /lib/fal/localfs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikkez/f3-fal/HEAD/lib/fal/localfs.php -------------------------------------------------------------------------------- /lib/fal/metafilestorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikkez/f3-fal/HEAD/lib/fal/metafilestorage.php -------------------------------------------------------------------------------- /lib/fal/metastorageinterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikkez/f3-fal/HEAD/lib/fal/metastorageinterface.php --------------------------------------------------------------------------------