diff options
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 24 |
1 files changed, 24 insertions, 0 deletions
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" + } +} |