Merge branch 'MDL-78457' of https://github.com/paulholden/moodle
[moodle.git] / lib / jmespath / composer.json
blob6b70068369b77b036cbeb6e37e1ad44b8e927074
2   "name": "mtdowling/jmespath.php",
3   "description": "Declaratively specify how to extract elements from a JSON document",
4   "keywords": ["json", "jsonpath"],
5   "license": "MIT",
7   "authors": [
8     {
9       "name": "Michael Dowling",
10       "email": "mtdowling@gmail.com",
11       "homepage": "https://github.com/mtdowling"
12     }
13   ],
15   "require": {
16     "php": "^5.4 || ^7.0 || ^8.0",
17     "symfony/polyfill-mbstring": "^1.17"
18   },
20   "require-dev": {
21     "composer/xdebug-handler": "^1.4 || ^2.0",
22     "phpunit/phpunit": "^4.8.36 || ^7.5.15"
23   },
25   "autoload": {
26     "psr-4": {
27       "JmesPath\\": "src/"
28     },
29     "files": ["src/JmesPath.php"]
30   },
32   "bin": ["bin/jp.php"],
34   "extra": {
35     "branch-alias": {
36       "dev-master": "2.6-dev"
37     }
38   }