summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 6fc12f7d1d87ae452cd9a083d5bdf10d249ad009 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
  "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.2"
  },
  "suggest": {
    "ext-mysqlnd": "*"
  },
  "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
        }
      ]
  }
}