summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 30452c16de922f85ee7fd094db412cfd60a494e5 (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_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.2"
  },
  "suggest": {
    "ext-mysqlnd": "*"
  },
  "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
        }
      ]
  }
}