From f45b05150a815e03938b0aa3fba9db5fc9c92cdc Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 4 Nov 2025 10:35:20 +0100 Subject: initial package open https://github.com/mariadb-corporation/mysqlnd_parsec/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..acb9fe1 --- /dev/null +++ b/composer.json @@ -0,0 +1,30 @@ +{ + "name": "mariadb/mysqlnd_parsec", + "description": "MariaDB parsec 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_parsec", + "priority": 30, + "support-zts": true, + "support-nts": true, + "configure-options": [ + { + "name": "with-mysqlnd-parsec", + "description": "Enable MariaDB parsec authentication support for mysqlnd", + "needs-value": false + } + ] + } +} + -- cgit