From dd93137661ea20fd508f04eeaff12f5edbc958be Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 8 Dec 2016 07:04:32 +0100 Subject: php-mtdowling-jmespath-php: 2.4.0 (backported from Fedora) --- composer.json | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 composer.json (limited to 'composer.json') diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..79a2c5e --- /dev/null +++ b/composer.json @@ -0,0 +1,37 @@ +{ + "name": "mtdowling/jmespath.php", + "description": "Declaratively specify how to extract elements from a JSON document", + "keywords": ["json", "jsonpath"], + "license": "MIT", + + "authors": [ + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + } + ], + + "require": { + "php": ">=5.4.0" + }, + + "require-dev": { + "phpunit/phpunit": "~4.0" + }, + + "autoload": { + "psr-4": { + "JmesPath\\": "src/" + }, + "files": ["src/JmesPath.php"] + }, + + "bin": ["bin/jp.php"], + + "extra": { + "branch-alias": { + "dev-master": "2.0-dev" + } + } +} -- cgit