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: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ and the project aims to follow [Semantic Versioning](https://semver.org/).

### Added

- **Project logo and brand assets.** Light/dark PL/php logos and a square icon
under `doc/assets/`, wired into the README and language reference.
- **Error CONTEXT lines.** Messages raised while PL/php code runs carry a
`CONTEXT: PL/php function "name"` line (or the anonymous-block/compilation
variants), like every other procedural language.
Expand Down
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
<div align="center">

# PL/php
<picture>
<source media="(prefers-color-scheme: dark)" srcset="doc/assets/plphp-logo-dark.svg">
<img src="doc/assets/plphp-logo.svg" alt="PL/php — Procedural Language for PostgreSQL" width="460">
</picture>

**Write PostgreSQL functions, triggers, and procedures in PHP.**

Expand Down
14 changes: 14 additions & 0 deletions doc/assets/plphp-icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 19 additions & 0 deletions doc/assets/plphp-logo-dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 18 additions & 0 deletions doc/assets/plphp-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions doc/plphp.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
<div align="center">
<picture>
<source media="(prefers-color-scheme: dark)" srcset="assets/plphp-logo-dark.svg">
<img src="assets/plphp-logo.svg" alt="PL/php" width="360">
</picture>
</div>

# PL/php Language Reference

PL/php lets you write PostgreSQL functions and triggers in PHP. This document
Expand Down
Loading