1. Go to this page and download the library: Download borschphp/orm 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/ */
borschphp / orm example snippets
use Borsch\Container\Container;
use Borsch\Db\Db;
use Laminas\Db\Adapter\AdapterInterface;
/**
* Setup the database informations into the Borsch\Db\Db class.
* It will be used later to deal with models.
*
* @param Container $container
*/
return function (Container $container): void {
Db::addConnection($container->get(AdapterInterface::class), 'default');
};
/*
* Database definitions
* --------------------
*
* Borsch uses the laminas-db package, please check it out for more information :
* https://docs.laminas.dev/laminas-db/adapter/
* You can update the database information in the .env file.
*/
$container->set(AdapterInterface::class, function () {
return new Adapter([
'driver' => env('DB_DRIVER'),
'database' => env('DB_NAME'),
'username' => env('DB_USER'),
'password' => env('DB_PWD'),
'hostname' => env('DB_HOST'),
'port' => env('DB_PORT'),
'charset' => env('DB_CHARSET'),
'driver_options' => [
PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION,
PDO::ATTR_DEFAULT_FETCH_MODE => PDO::FETCH_ASSOC,
PDO::ATTR_EMULATE_PREPARES => false,
PDO::MYSQL_ATTR_INIT_COMMAND => 'SET NAMES utf8mb4 COLLATE utf8mb4_general_ci'
]
]);
})->cache(true);