axy/fs-ifs

Abstraction of file system functions

0.0.4 2017-05-11 14:12 UTC

This package is auto-updated.

Last update: 2024-07-08 01:26:21 UTC


README

axy\fs\ifs

Abstraction of file system functions (PHP).

Latest Stable Version Minimum PHP Version Build Status Coverage Status License

  • The library does not require any dependencies.
  • Tested on PHP 5.4+, PHP 7, HHVM (on Linux), PHP 5.5 (on Windows).
  • Install: composer require axy/fs-ifs.
  • License: MIT.

Documentation

Documentation in Russian.

The library reproduces built-in file system functions.

Differences:

  • The application code to access files not via global functions, and via an object with a particular interface. This object is easily replaced by another implementation. Can use a mock for tests (it does not work with real file system, but with memory).
  • Exceptions instead of WARNINGs.
  • Separate class for work with opened file.
  • Several results are structured as objects (Stat, MetaData) instead associative arrays. It improves the autocomplete.
  • Method names are better structured.
  • Specific implementations can implement additional features. Log, an isolated directory and etc.

Implementations

This package defines only interfaces. Specific implementations are located in other packages. For example, work with real FS is axy/fs-real.

Classes and interfaces