PHP code example of hopeter1018 / doctrine-dynamic-column-bundle

1. Go to this page and download the library: Download hopeter1018/doctrine-dynamic-column-bundle 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/ */

    

hopeter1018 / doctrine-dynamic-column-bundle example snippets


return [
  ...,
  HoPeter1018\DoctrineDynamicColumnBundle\HoPeter1018DoctrineDynamicColumnBundle::class => ['all' => true],
];

$bundles = [
  ...,
  new HoPeter1018\DoctrineDynamicColumnBundle\HoPeter1018DoctrineDynamicColumnBundle(),
];

namespace App\Entity;

use HoPeter1018\DoctrineDynamicColumnBundle\Annotation as DynCol;
use HoPeter1018\DoctrineDynamicColumnBundle\Entity\Traits\DynamicColumnTrait;

/**
 * @DynCol\Entity(columns={
 *     "s1": @DynCol\Column(name="s1", type="string", length=255),
 *     "b1": @DynCol\Column(name="b1", type="boolean", length=255),
 *     "datee": @DynCol\Column(name="datee", type="date"),
 * })
 */
class TheEntity
{
    use DynamicColumnTrait;
}