klorinmannen/projom-storage

Projom storage module

v1.0.2 2024-11-16 20:31 UTC

This package is auto-updated.

Last update: 2025-03-16 21:06:34 UTC


README

PHP version support PHPUnit

Project goals

  • Accessing databases with a simple interface
  • Should be easy to understand and use
  • Lightweight
  • Support for MySQL/MariaDB, SQLite and JSON

Composer

composer require klorinmannen/projom-storage

Docs & coverage

Visit the repository wiki pages or the api documentation.
Unit test coverage.

Usage

use Projom\Storage\Engine;
use Projom\Storage\Query\MySQLQuery;

$config = [ 
   'driver' => 'mysql',
   'connections' => [
      [
         'name' => 'connection-name',
         'username' => 'username',
         'password' => 'password',
         'host' => 'localhost',
         'port' => '3306',
         'database' => 'database-name'
      ]
   ]
];

Engine::start();
Engine::loadDriver($config);

// Select users
$users = MySQLQuery::query('User')->select();