1. Go to this page and download the library: Download eloquent/fixie library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
eloquent / fixie example snippets
use Eloquent\Fixie\Reader\FixtureReader;
use Eloquent\Fixie\Writer\FixtureWriter;
$writer = new FixtureWriter;
$reader = new FixtureReader;
// some tabular data
$data = array(
array('foo' => 'bar', 'baz' => 'qux'),
array('foo' => 'doom', 'baz' => 'splat'),
);