<?php

include_once(dirname(__FILE__).'/FormManager.php');
include_once(dirname(__FILE__).'/Form.php');
include_once(dirname(__FILE__).'/Types/Base.php');
include_once(dirname(__FILE__).'/Types/Color.php');
include_once(dirname(__FILE__).'/Types/DateTime.php');
include_once(dirname(__FILE__).'/Types/File.php');
include_once(dirname(__FILE__).'/Types/GPS.php');
include_once(dirname(__FILE__).'/Types/Integer.php');
include_once(dirname(__FILE__).'/Types/IPv6Address.php');
include_once(dirname(__FILE__).'/Types/OneToMany.php');
include_once(dirname(__FILE__).'/Types/IPv6Address.php');
include_once(dirname(__FILE__).'/Types/Password.php');
include_once(dirname(__FILE__).'/Types/String.php');
include_once(dirname(__FILE__).'/Types/TimeDiff.php');
include_once(dirname(__FILE__).'/Types/Type.php');
include_once(dirname(__FILE__).'/Types/Boolean.php');
include_once(dirname(__FILE__).'/Types/Date.php');
include_once(dirname(__FILE__).'/Types/Boolean.php');
include_once(dirname(__FILE__).'/Types/Enumeration.php');
include_once(dirname(__FILE__).'/Types/Float.php');
include_once(dirname(__FILE__).'/Types/Hidden.php');
include_once(dirname(__FILE__).'/Types/Image.php');
include_once(dirname(__FILE__).'/Types/IPv4Address.php');
include_once(dirname(__FILE__).'/Types/MacAddress.php');
include_once(dirname(__FILE__).'/Types/OneToMany2.php');
include_once(dirname(__FILE__).'/Types/RandomHash.php');
include_once(dirname(__FILE__).'/Types/Text.php');
include_once(dirname(__FILE__).'/Types/Time.php');

class PackageFormManager
{
  public string $Name;
  public string $Version;
  public int $ReleaseDate;
  public string $License;
  public string $Creator;
  public string $Homepage;

  function __construct()
  {
    $this->Name = 'FormManager';
    $this->Version = '1.0';
    $this->ReleaseDate = strtotime('2023-05-31');
    $this->Creator = 'Chronos';
    $this->License = 'GNU/GPLv3';
    $this->Homepage = 'https://svn.zdechov.net/PHPlib/FormManager/';
  }
}
