2020-01-26 13:19:35 +00:00
|
|
|
<?php declare(strict_types=1);
|
2019-08-07 14:53:59 -05:00
|
|
|
|
|
|
|
class ImageIOInfo extends ExtensionInfo
|
|
|
|
{
|
|
|
|
public const KEY = "image";
|
|
|
|
|
2021-03-14 23:43:50 +00:00
|
|
|
public string $key = self::KEY;
|
|
|
|
public string $name = "Post Manager";
|
|
|
|
public string $url = self::SHIMMIE_URL;
|
|
|
|
public array $authors = [self::SHISH_NAME=> self::SHISH_EMAIL, "jgen"=>"jgen.tech@gmail.com"];
|
|
|
|
public string $license = self::LICENSE_GPLV2;
|
|
|
|
public string $description = "Handle the image database";
|
|
|
|
public string $visibility = self::VISIBLE_HIDDEN;
|
|
|
|
public bool $core = true;
|
2019-08-07 14:53:59 -05:00
|
|
|
}
|