summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: d203f28e3363582621ce6d238ed1d3a70457b0f2 (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
{
  "name": "supermetrics/jsonpath",
  "type": "php-ext",
  "license": "PHP-3.01",
  "description": "Extract data from a decoded JSON document using the versatile JSONPath query language",
  "require": {
    "php": ">=8.0,<8.6"
  },
  "php-ext": {
    "extension-name": "jsonpath",
    "priority": 80,
    "configure-options": [
      {
        "name": "enable-jsonpath",
        "description": "Whether to enable JSONPath support",
        "needs-value": false
      },
      {
        "name": "enable-code-coverage",
        "description": "Whether to enable code coverage (relevant for extension development only!)",
        "needs-value": false
      }
    ]
  }
}