orma
1.0.0
composer require sensorario/orma
Copiez vendor/sensorario/orma/public/index.php
à la racine de votre projet. SQLite ne nécessite aucune installation. Postgres peut être utilisé avec docker : vendor/sensorario/orma/docker-compose.yaml
.
Bon codage
Les données Postgres font référence à la machine Docker à l'intérieur du projet.
$ config = [
' postgresql ' => [
' dns ' => ' pgsql:host=database;dbname=your_database_name ' ,
' username ' => ' your_username ' ,
' password ' => ' your_password ' ,
],
' sqlite ' => [
' dns ' => ' sqlite:./erdatabase ' ,
],
' db ' => ' postgresql ' ,
' db ' => ' sqlite ' ,
];
$ pdo = new PDO (
$ config [ $ config [ ' db ' ]][ ' dns ' ],
$ config [ $ config [ ' db ' ]][ ' username ' ],
$ config [ $ config [ ' db ' ]][ ' password ' ],
);
$ orma = new Orma ( $ pdo , match ( $ driver ) {
' sqlite ' => new SQLiteDriver ,
' postgresql ' => new PostgreSQLDriver ,
});
$ orma ( $ table )-> createTable ();
$ orma -> addColumn ( $ column );
$ orma -> insert ([ ' id ' => 42 , ]);
$ orma -> delete ([ ' id ' => 42 , ]);
$ orma -> update ([ ' foo ' => ' bar ' , ], [ ' id ' => 42 , ]);
PS. Ce dépôt est fait juste pour le plaisir.