summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json25
1 files changed, 25 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..d203f28
--- /dev/null
+++ b/composer.json
@@ -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.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
+ }
+ ]
+ }
+}