1. Go to this page and download the library: Download nozell/database 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/ */
nozell / database example snippets
use Nozell\Database\DatabaseFactory;
// Create a YAML database | Crear una base de datos en YAML
$db = DatabaseFactory::create('path/to/data.yml', 'yaml');
// Create a JSON database | Crear una base de datos en JSON
$db = DatabaseFactory::create('path/to/data.json', 'json');
// Create an SQLite database | Crear una base de datos en SQLite
$db = DatabaseFactory::create('path/to/data.db', 'sqlite');