<?php

class PackageTinyMCE
{
  var $Name;
  var $Version;
  var $ReleaseDate;
  var $License;
  var $Creator;
  var $Homepage;

  function __construct()
  {
    $this->Name = 'TinyMCE';
    $this->Version = '4.4.3';
    $this->ReleaseDate = strtotime('2016-09-01');
    $this->Creator = 'ephox';
    $this->License = 'GNU/LGPL 2';
    $this->Homepage = 'https://www.tinymce.com/';
  }
}
