Skip to content

Commit

Permalink
Merge pull request #187 from supermetrics-public/chore/ComposerJson
Browse files Browse the repository at this point in the history
Add composer.json for compatibility with PIE
  • Loading branch information
crocodele authored Sep 27, 2024
2 parents 75e6e16 + 278f5f4 commit 793914e
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 793914e

Please sign in to comment.