Proyectos de Subversion Moodle

Rev

Rev 1 | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
{
1441 ariadna 2
    "name": "mtdowling/jmespath.php",
3
    "description": "Declaratively specify how to extract elements from a JSON document",
4
    "keywords": ["json", "jsonpath"],
5
    "license": "MIT",
6
    "authors": [
7
        {
8
            "name": "Graham Campbell",
9
            "email": "hello@gjcampbell.co.uk",
10
            "homepage": "https://github.com/GrahamCampbell"
11
        },
12
        {
13
            "name": "Michael Dowling",
14
            "email": "mtdowling@gmail.com",
15
            "homepage": "https://github.com/mtdowling"
16
        }
17
    ],
18
    "require": {
19
        "php": "^7.2.5 || ^8.0",
20
        "symfony/polyfill-mbstring": "^1.17"
1 efrain 21
    },
1441 ariadna 22
    "require-dev": {
23
        "composer/xdebug-handler": "^3.0.3",
24
        "phpunit/phpunit": "^8.5.33"
25
    },
26
    "autoload": {
27
        "psr-4": {
28
            "JmesPath\\": "src/"
29
        },
30
        "files": ["src/JmesPath.php"]
31
    },
32
    "bin": ["bin/jp.php"],
33
    "extra": {
34
        "branch-alias": {
35
            "dev-master": "2.8-dev"
36
        }
1 efrain 37
    }
38
}