From 5420a6f7b563a0a1fef403e0f03a9d36c88f0472 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 4 Sep 2017 12:19:48 +0200 Subject: backport --- composer.json | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 composer.json (limited to 'composer.json') diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..7bf7edc --- /dev/null +++ b/composer.json @@ -0,0 +1,24 @@ +{ + "name": "flow/jsonpath", + "description": "JSONPath implementation for parsing, searching and flattening arrays", + "license": "MIT", + "authors": [ + { + "name": "Stephen Frank", + "email": "stephen@flowsa.com" + } + ], + "autoload": { + "psr-0": { + "Flow\\JSONPath": "src/", + "Flow\\JSONPath\\Test": "tests/" + } + }, + "require": { + "php": ">=5.4.0" + }, + "require-dev": { + "peekmo/jsonpath": "dev-master", + "phpunit/phpunit": "^4.0" + } +} -- cgit