Proyectos de Subversion Moodle

Rev

Rev 1 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

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