Skip to content

Commit

Permalink
Add composer.json for compatibility with PIE
Browse files Browse the repository at this point in the history
  • Loading branch information
crocodele committed Sep 26, 2024
1 parent 75e6e16 commit 278f5f4
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,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.5"
},
"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
}
]
}
}

0 comments on commit 278f5f4

Please sign in to comment.