An open API service indexing awesome lists of open source software.

https://github.com/padosoft/io

Simple agnostic package for IO related (files, dir, etc..)
https://github.com/padosoft/io

directory files filesystem io package

Last synced: 11 months ago
JSON representation

Simple agnostic package for IO related (files, dir, etc..)

Awesome Lists containing this project

README

          

# Simple agnostic package for IO related (files, dir, etc..)

![Agnostic](https://img.shields.io/badge/php-agnostic-blue.svg?style=flat-square)
[![Latest Version on Packagist](https://img.shields.io/packagist/v/padosoft/io.svg?style=flat-square)](https://packagist.org/packages/padosoft/io)
[![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](LICENSE.md)
[![Build Status](https://img.shields.io/travis/padosoft/io/master.svg?style=flat-square)](https://travis-ci.org/padosoft/io)
[![Quality Score](https://img.shields.io/scrutinizer/g/padosoft/io.svg?style=flat-square)](https://scrutinizer-ci.com/g/padosoft/io)
[![Total Downloads](https://img.shields.io/packagist/dt/padosoft/io.svg?style=flat-square)](https://packagist.org/packages/padosoft/io)
[![SensioLabsInsight](https://img.shields.io/sensiolabs/i/e5f0885a-912d-4bd8-a6c4-76127603d2b6.svg?style=flat-square)](https://insight.sensiolabs.com/projects/e5f0885a-912d-4bd8-a6c4-76127603d2b6)

This is a simple agnostic package with few or zero dipendencies.
This is ideal to provides support and helpers for creating packeges without include many and many dipendencies.

##Requires

- php: >=7.0.0

## Installation

You can install the package via composer:
``` bash
$ composer require padosoft/io
```

## Usage

Then here's an example of how to use `FileHelper` class:

Add a use statement `use Padosoft\Io\FileHelper;`

```php