26 lines
737 B
PHP
26 lines
737 B
PHP
<?php
|
|
/**
|
|
* CodePress CMS Version Information
|
|
*/
|
|
|
|
return [
|
|
'version' => '2.5.2',
|
|
'release_date' => '2026-08-10',
|
|
'codename' => 'Atlas',
|
|
'status' => 'stable',
|
|
|
|
'system_requirements' => [
|
|
'php' => '>=8.0',
|
|
'extensions' => ['json', 'mbstring'],
|
|
'optional' => ['opcache' => 'Recommended for performance']
|
|
],
|
|
|
|
'credits' => [
|
|
'author' => 'E.Noorlander / CodePress Development Team',
|
|
'license' => 'AGPL v3 / Commercial',
|
|
'license_info' => 'Dual-licensed: AGPL v3 for open-source, Commercial license for proprietary use',
|
|
'repository' => 'https://git.noorlander.info/E.Noorlander/CodePress.git',
|
|
'contact' => 'commercial@noorlander.info'
|
|
]
|
|
];
|