tinyPacker/_define.php

30 lines
920 B
PHP
Raw Normal View History

2021-08-19 19:42:44 +00:00
<?php
2021-09-02 21:12:57 +00:00
/**
2023-10-09 19:12:45 +00:00
* @file
* @brief The plugin tinyPacker definition
* @ingroup tinyPacker
2022-11-20 21:06:36 +00:00
*
2023-10-09 19:12:45 +00:00
* @defgroup tinyPacker Plugin tinyPacker.
2022-11-20 21:06:36 +00:00
*
2023-10-09 19:12:45 +00:00
* Quick pack theme or plugin into public dir.
2022-11-20 21:06:36 +00:00
*
2023-10-09 19:12:45 +00:00
* @author Jean-Christian Denis
* @copyright Jean-Christian Denis
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
2021-09-02 21:12:57 +00:00
*/
2023-10-09 19:12:45 +00:00
declare(strict_types=1);
2021-08-19 19:42:44 +00:00
$this->registerModule(
'Tiny packer',
'Quick pack theme or plugin into public dir',
'Jean-Christian Denis',
2023-10-07 19:45:14 +00:00
'1.4',
2021-08-19 19:42:44 +00:00
[
2023-10-09 19:12:45 +00:00
'requires' => [['core', '2.28']],
'type' => 'plugin',
'support' => 'https://git.dotclear.watch/JcDenis/' . basename(__DIR__) . '/issues',
'details' => 'https://git.dotclear.watch/JcDenis/' . basename(__DIR__) . '/src/branch/master/README.md',
'repository' => 'https://git.dotclear.watch/JcDenis/' . basename(__DIR__) . '/raw/branch/master/dcstore.xml',
2021-08-19 19:42:44 +00:00
]
2022-11-20 21:06:36 +00:00
);