summaryrefslogtreecommitdiff
path: root/vendor/mtdowling/jmespath.php/composer.json
blob: b4c37c1caada6ca69c8c097eae947129bde6c52a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
    "name": "mtdowling/jmespath.php",
    "description": "Declaratively specify how to extract elements from a JSON document",
    "keywords": ["json", "jsonpath"],
    "license": "MIT",
    "authors": [
        {
            "name": "Graham Campbell",
            "email": "[email protected]",
            "homepage": "https://github.com/GrahamCampbell"
        },
        {
            "name": "Michael Dowling",
            "email": "[email protected]",
            "homepage": "https://github.com/mtdowling"
        }
    ],
    "require": {
        "php": "^7.2.5 || ^8.0",
        "symfony/polyfill-mbstring": "^1.17"
    },
    "require-dev": {
        "composer/xdebug-handler": "^3.0.3",
        "phpunit/phpunit": "^8.5.33"
    },
    "autoload": {
        "psr-4": {
            "JmesPath\\": "src/"
        },
        "files": ["src/JmesPath.php"]
    },
    "bin": ["bin/jp.php"],
    "extra": {
        "branch-alias": {
            "dev-master": "2.7-dev"
        }
    }
}