Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion distributions
Submodule distributions updated 1 files
+767 −777 php-keyring.gpg
14 changes: 14 additions & 0 deletions include/gpg-keys.inc
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,12 @@ function gpg_key_get(string $rm): ?string {
" Key fingerprint = CBAF 69F1 73A0 FEA4 B537 F470 D66C 9593 118B CCB6\n" .
"uid Christoph M. Becker <cmb@php.net>";

case 'daniels':
return
"pub rsa4096 2025-06-08 [SCEA]\n" .
" D95C 03BC 702B E951 5344 AE33 74E4 4BC9 0677 01A5\n" .
"uid [ultimate] Daniel Scherzer (for PHP) <daniels@php.net>";

case 'davey':
return
"pub 4096R/7BD5DCD0 2016-05-07\n" .
Expand All @@ -69,6 +75,13 @@ function gpg_key_get(string $rm): ?string {
" Key fingerprint = 0B96 609E 270F 565C 1329 2B24 C13C 70B8 7267 B52D\n" .
"uid David Soria Parra <dsp@php.net>";

case 'edorian':
return
"pub ed25519 2025-06-08 [SC]\n" .
" 49D9 AF6B C72A 80D6 6917 19C8 AA23 F5BE 9C70 97D4\n" .
"uid [ultimate] Volker Dusch <edorian@php.net>\n" .
"sub cv25519 2025-06-08 [E]";

case 'ericmann':
return
"pub rsa4096 2016-11-25 [SC]\n" .
Expand Down Expand Up @@ -177,6 +190,7 @@ function gpg_key_get(string $rm): ?string {

function gpg_key_get_branches(bool $activeOnly): array {
$branches = [
'8.5' => ['pierrick', 'edorian', 'daniels'],
'8.4' => ['ericmann', 'calvinb', 'saki'],
'8.3' => ['pierrick', 'ericmann', 'bukka'],
'8.2' => ['pierrick', 'ramsey', 'sergey'],
Expand Down