1
0
mirror of https://github.com/php/web-php.git synced 2026-03-23 23:02:13 +01:00
Files
archived-web-php/gpg-keys.php
Sara Golemon 8311184380 Cleanup version.inc
With this diff, version.inc will ONLY export one "variable" named
$RELEASES which will continue to have the same format as previous.

It will also export a helper method named release_get_latest()
for quickly accessing the most recent version published.

All other globals previously exported by this function are
no longer used on web-php.
2019-06-05 18:51:07 -04:00

29 lines
647 B
PHP

<?php // vim: et
$_SERVER['BASE_PAGE'] = 'gpg-keys.php';
include_once __DIR__ . '/include/prepend.inc';
include_once __DIR__ . '/include/gpg-keys.inc';
site_header('GPG Keys');
?>
<h1>GPG Keys</h1>
<p>
Starting in April 2012, PHP release tags have been signed in Git by the
release managers for each branch. The following GnuPG keys can be used to
verify these tags:
</p>
<?php foreach ($GPG_KEYS as $branch => $data): ?>
<h3 id="gpg-<?php echo $branch; ?>" class="content-header">PHP <?php echo $branch; ?></h3>
<div class="content-box">
<pre>
<?php echo $data; ?>
</pre>
</div>
<?php endforeach ?>
<?php
site_footer();