mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-02-06 07:04:57 +00:00
12 lines
342 B
PHP
12 lines
342 B
PHP
|
<?php
|
||
|
$_GLOBALS['SEEDDMS_EXT']['example'] = array(
|
||
|
'title' => 'Example Extension',
|
||
|
'description' => 'Example Extension',
|
||
|
'version' => '1.0.0',
|
||
|
'author' => array('name'=>'Uwe Steinmann', 'email'=>'uwe@steinmann.cx', 'company'=>'MMK GmbH'),
|
||
|
'constraints' => array(
|
||
|
'depends' => array('php' => '5.4.4-', 'seeddms' => '4.2.0-'),
|
||
|
),
|
||
|
);
|
||
|
?>
|