diff options
| author | 2026-08-24 00:21:43 -0700 | |
|---|---|---|
| committer | 2026-08-24 00:22:01 -0700 | |
| commit | 94a7f1fc01ec27f85853294c167c1ca05c3269b8 (patch) | |
| tree | 1e33f63ec9e44903173daabcf1a577eed3d7b634 /composer.json | |
| parent | 2edfa920e0be2b3d63f3c6b0fb36f0c1c32c4339 (diff) | |
| download | lezer-94a7f1fc01ec27f85853294c167c1ca05c3269b8.tar.gz lezer-94a7f1fc01ec27f85853294c167c1ca05c3269b8.zip | |
Add simplistic database
This doesn't include a full database, or even a secure one, but this is the
first step into moving forward with this project. I can now write to and read
from a database.
Diffstat (limited to 'composer.json')
| -rw-r--r-- | composer.json | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/composer.json b/composer.json index 57f4b25..39d96fe 100644 --- a/composer.json +++ b/composer.json @@ -12,8 +12,15 @@ "type": "project", "require": { "php": ">=8.3", - "phel-lang/phel-lang": ">=0.50" + "phel-lang/phel-lang": "^0.50", + "phel-lang/phel-pdo": "dev-bump" }, + "repositories": [ + { + "type": "path", + "url": "../../foreign/phel-pdo" + } + ], "require-dev": { "symfony/var-dumper": "^6.4" }, |
