paslandau / io-utility
IO library for file operations - mostly for convenience on commmon actions
0.8
2015-12-11 10:02 UTC
Requires
- php: >=5.5
- ext-mbstring: *
- league/csv: ^7.1.1
Requires (Dev)
- paslandau/array-utility: dev-master
- phpunit/phpunit: ~4
README
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';