Skip to content

Commit

Permalink
Add new PHP 8.4 gpg key branch (#992)
Browse files Browse the repository at this point in the history
* Add new PHP 8.4 gpg key branch

* Add my GPG public key

* Add myself as an RM for 8.4

* Add GPG pub key and add myself to RM for 8.4

* Update php-keyring.gpg in distributions

---------

Co-authored-by: Calvin Buckley <[email protected]>
Co-authored-by: Saki Takamachi <[email protected]>
  • Loading branch information
3 people authored Jun 4, 2024
1 parent b7b542e commit 3814d0b
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
2 changes: 1 addition & 1 deletion distributions
Submodule distributions updated 1 files
+386 −398 php-keyring.gpg
17 changes: 16 additions & 1 deletion include/gpg-keys.inc
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ function gpg_key_get(string $rm): ?string {
"pub 2048R/9C0D5763 2015-06-09 [expires: 2024-06-06]\n" .
" Key fingerprint = 1A4E 8B72 77C4 2E53 DBA9 C7B9 BCAA 30EA 9C0D 5763\n" .
"uid Anatol Belski <[email protected]>";

case 'bukka':
return
"pub ed25519 2021-04-10 [SC]\n" .
Expand All @@ -20,6 +20,13 @@ function gpg_key_get(string $rm): ?string {
"uid [ultimate] Jakub Zelenka <[email protected]>\n" .
"sub cv25519 2021-04-10 [E]";

case "calvinb":
return
"pub ed25519 2024-04-17 [SC]\n" .
" 9D7F 99A0 CB8F 05C8 A695 8D62 56A9 7AF7 600A 39A6\n" .
"uid [ultimate] Calvin Buckley (PHP) <[email protected]>\n" .
"sub cv25519 2024-04-17 [E]";

case 'carusogabriel-old':
return
"pub rsa4096 2020-05-09 [SC] [expires: 2024-05-08]\n" .
Expand Down Expand Up @@ -133,6 +140,13 @@ function gpg_key_get(string $rm): ?string {
" Key fingerprint = B1B4 4D8F 021E 4E2D 6021 E995 DC9F F8D3 EE5A F27F\n" .
"uid Remi Collet <[email protected]>";

case 'saki':
return
"pub rsa4096 2024-05-20 [SC]\n" .
" 0616 E93D 95AF 4712 43E2 6761 7704 26E1 7EBB B3DD\n" .
"uid [ultimate] Saki Takamachi (for php.net) <[email protected]>\n" .
"sub rsa4096 2024-05-20 [E]";

case 'sergey':
return
"pub rsa4096 2021-03-26 [SC] [expires: 2030-03-26]\n" .
Expand Down Expand Up @@ -163,6 +177,7 @@ function gpg_key_get(string $rm): ?string {

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

0 comments on commit 3814d0b

Please sign in to comment.