Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
{
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
 
7
  "authors": [
8
    {
9
      "name": "Michael Dowling",
10
      "email": "mtdowling@gmail.com",
11
      "homepage": "https://github.com/mtdowling"
12
    }
13
  ],
14
 
15
  "require": {
16
    "php": "^5.4 || ^7.0 || ^8.0",
17
    "symfony/polyfill-mbstring": "^1.17"
18
  },
19
 
20
  "require-dev": {
21
    "composer/xdebug-handler": "^1.4 || ^2.0",
22
    "phpunit/phpunit": "^4.8.36 || ^7.5.15"
23
  },
24
 
25
  "autoload": {
26
    "psr-4": {
27
      "JmesPath\\": "src/"
28
    },
29
    "files": ["src/JmesPath.php"]
30
  },
31
 
32
  "bin": ["bin/jp.php"],
33
 
34
  "extra": {
35
    "branch-alias": {
36
      "dev-master": "2.6-dev"
37
    }
38
  }
39
}