forked from php/web-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgpg-keys.php
More file actions
29 lines (23 loc) · 748 Bytes
/
gpg-keys.php
File metadata and controls
29 lines (23 loc) · 748 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?php // vim: et
$_SERVER['BASE_PAGE'] = 'gpg-keys.php';
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/prepend.inc';
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/gpg-keys.inc';
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/version.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();