From b0adb02107031e7fe90285a365a9a659fb64107b Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 4 Nov 2025 10:35:26 +0100 Subject: initial package open https://github.com/mariadb-corporation/mysqlnd_ed25519/pull/1 add dependency on mysqlnd --- composer.json | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 composer.json (limited to 'composer.json') diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..8d21073 --- /dev/null +++ b/composer.json @@ -0,0 +1,30 @@ +{ + "name": "mariadb/mysqlnd_ed25519", + "description": "MariaDB ed25519 authentication plugin for mysqlnd", + "type": "php-ext", + "license": "BSD-3-Clause", + "authors": [ + { + "name": "Georg Richter", + "email": "georg@mariadb.com", + "role": "Maintainer" + } + ], + "require": { + "php": ">=8.1" + }, + "php-ext": { + "extension-name": "mysqlnd_ed25519", + "priority": 30, + "support-zts": true, + "support-nts": true, + "configure-options": [ + { + "name": "with-mysqlnd-ed25519", + "description": "Enable MariaDB ed25519 authentication support for mysqlnd", + "needs-value": false + } + ] + } +} + -- cgit