summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json24
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"
+ }
+}