klorinmannen / projom-storage
Projom storage module
v1.0.2
2024-11-16 20:31 UTC
Requires
- php: >=8.1.0
- psr/log: ^3.0
Requires (Dev)
- phpunit/phpunit: ^11.0.0
README
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();