paslandau/io-utility

IO library for file operations - mostly for convenience on commmon actions

0.8 2015-12-11 10:02 UTC

This package is auto-updated.

Last update: 2024-04-05 02:10:00 UTC


README

#io-utility Build Status

IO library for file operations - mostly for convenience on commmon actions

##Description

##Requirements

  • PHP >= 5.5
  • league/csv >= 8.0

##Installation

The recommended way to install io-utility is through Composer.

curl -sS https://getcomposer.org/installer | php

Next, update your project's composer.json file to include IOUtility:

{
    "repositories": [ { "type": "composer", "url": "http://packages.myseosolution.de/"} ],
    "minimum-stability": "dev",
    "require": {
         "paslandau/io-utility": "dev-master"
    }
    "config": {
        "secure-http": false
    }
}

Caution: You need to explicitly set "secure-http": false in order to access http://packages.myseosolution.de/ as repository. This change is required because composer changed the default setting for secure-http to true at the end of february 2016.

After installing, you need to require Composer's autoloader:

require 'vendor/autoload.php';