nicolachoquet06250/php-lib-orm

module d'orm de la bibliothèque nicolachoquet06250/php-lib

1.1.1 2021-05-31 14:39 UTC

This package is auto-updated.

Last update: 2025-05-29 01:34:59 UTC


README

module d'orm de la bibliothèque nicolachoquet06250/php-lib

DOCUMENTATION

  • Créer un Model :
<?php

use PhpLib\ORM\Model;
use PhpLib\ORM\decorators\{
    Entity, Column, AutoIncrement, 
    PrimaryKey, DefaultValue,
    types\Integer, types\DateTime, 
    types\NotNull
};

#[Entity('table-name')]
class MaTable extends Model {
    #[
        Column('id'),
        Integer(11),
        AutoIncrement(),
        PrimaryKey()
    ]
    public int $id; 
    
    #[
        Column(),
        DateTime(),
        DefaultValue('NOW()'),
        NotNull()
    ]
    public string $created_at;
}