require 'vendor/autoload.php';
use Flintstone\Flintstone;
use Flintstone\Formatter\JsonFormatter;
// подключаемся к БД "auth"
$auth = new Flintstone('auth', [
'dir' => './database/',
'formatter' => new JsonFormatter()
]);
// выбираем все записи в таблице
$data = $auth->getAll();