repo.omer.biz

Client setup for this APT repository (PHP packages). Signed metadata, HTTPS only.

1. Install the signing key

curl -fsSL https://repo.omer.biz/keys/omer-php.gpg \
  | sudo tee /usr/share/keyrings/omer-php.gpg >/dev/null
sudo chmod 644 /usr/share/keyrings/omer-php.gpg

2. Add an APT source

Use the codename that matches your OS:

OSCodename
Ubuntu 22.04jammy
Ubuntu 24.04noble
Debian 12bookworm
# Ubuntu 24.04
echo "deb [signed-by=/usr/share/keyrings/omer-php.gpg] https://repo.omer.biz noble main" \
  | sudo tee /etc/apt/sources.list.d/omer-php.list

# Ubuntu 22.04 — use jammy instead of noble
# Debian 12   — use bookworm instead of noble

3. Update package lists

sudo apt update

4. List what is available

# Packages from this repository
apt-cache madison '.*' 2>/dev/null | grep repo.omer.biz

# Search by name
apt-cache search php8.2

# Show candidate / origin for one package
apt-cache policy php8.2-fpm

5. Install

sudo apt install php8.2-fpm

Public key: /keys/omer-php.gpg. Always use signed-by= — do not use deprecated apt-key. An empty search result means no packages have been published for your distribution yet.