Author: Pierrick Charron (adoy) Committer: GitHub (web-flow) Pusher: cmb69 Date: 2022-05-19T15:12:52+02:00
Commit: https://github.com/php/web-php/commit/05dffd1797a371d83851d4f9ce53e9275ad78721 Raw diff: https://github.com/php/web-php/commit/05dffd1797a371d83851d4f9ce53e9275ad78721.diff Add PHP 8.2 key signature for pierrick & sergey Co-authored-by: Sergey Panteleev <ser...@php.net> Closes GH-515. Changed paths: M include/gpg-keys.inc Diff: diff --git a/include/gpg-keys.inc b/include/gpg-keys.inc index 00fcb3dbe..a415b5ed7 100644 --- a/include/gpg-keys.inc +++ b/include/gpg-keys.inc @@ -79,6 +79,13 @@ function gpg_key_get(string $rm): ?string { "uid [ultimate] Peter Kokot <p...@php.net>\n" . "sub rsa4096 2019-05-29 [E] [expires: 2021-05-28]"; + case 'pierrick': + return + "pub rsa4096 2021-04-01 [SC]\n" . + " 1198 C011 7593 497A 5EC5 C199 286A F1F9 8974 69DC\n" . + "uid [ultimate] Pierrick Charron <pierr...@php.net>\n" . + "sub rsa4096 2021-04-01 [E]"; + case 'pollita': return "pub 4096R/70D12172 2017-04-14 [expires: 2024-04-21]\n" . @@ -98,6 +105,15 @@ function gpg_key_get(string $rm): ?string { " Key fingerprint = B1B4 4D8F 021E 4E2D 6021 E995 DC9F F8D3 EE5A F27F\n" . "uid Remi Collet <r...@php.net>"; + case 'sergey': + return + "pub rsa4096 2021-03-26 [SC] [expires: 2030-03-26]\n" . + " E609 13E4 DF20 9907 D8E3 0D96 659A 97C9 CF2A 795A\n" . + "uid [ultimate] Sergey Panteleev <ser...@php.net>\n". + "uid [ultimate] Sergey Panteleev <ser...@s-panteleev.ru>\n". + "uid [ultimate] Sergey Panteleev <ser...@sergeypanteleev.com>\n". + "sub rsa4096 2021-03-26 [E] [expires: 2025-03-26]"; + case 'stas': return "pub 2048D/5DA04B5D 2012-03-19\n" . @@ -119,6 +135,7 @@ function gpg_key_get(string $rm): ?string { function gpg_key_get_branches(bool $activeOnly): array { $branches = [ + '8.2' => [ 'pierrick', 'ramsey', 'sergey' ], '8.1' => [ 'krakjoe', 'ramsey', 'patrickallaert' ], '8.0' => [ 'pollita', 'carusogabriel' ], '7.4' => [ 'derick', 'petk' ], -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php