Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1441 ariadna 1
{
2
    "name": "rodneyrehm/plist",
3
    "description": "Library for reading and writing Apple's CFPropertyList (plist) files in XML as well as binary format.",
4
    "keywords": ["Core Foundation", "CFPropertyList", "plist", "apple", "xml", "binary"],
5
    "type": "library",
6
    "homepage": "https://github.com/moodlehq/CFPropertyList",
7
    "license": "MIT",
8
    "require": {
9
        "php": "^7.4 || ^8.0",
10
        "ext-dom": "*",
11
        "ext-libxml": "*"
12
    },
13
    "authors": [
14
        {
15
            "name": "Andrew Lyons",
16
            "email": "andrew.lyons@moodle.com",
17
            "role": "developer"
18
        },
19
        {
20
            "name": "Andrew Gosali",
21
            "email": "andrew.gosali@moodle.com",
22
            "role": "developer"
23
        },
24
        {
25
            "name": "Christian Kruse",
26
            "email": "cjk@wwwtech.de",
27
            "role": "developer"
28
        },
29
        {
30
            "name": "Rodney Rehm",
31
            "email": "mail+github@rodneyrehm.de",
32
            "role": "developer"
33
        },
34
        {
35
         "name": "Thierry Bugier",
36
         "email": "tbugier@teclib.com",
37
         "role": "developer"
38
      }
39
 ],
40
    "support": {
41
        "issues": "https://github.com/moodlehq/CFPropertyList/issues",
42
        "source": "https://github.com/moodlehq/CFPropertyList",
43
        "docs": "https://moodlehq.github.io/CFPropertyList/howtos/",
44
        "rss": "https://moodlehq.github.io/CFPropertyList/feed.xml"
45
    },
46
    "autoload": {
47
        "psr-4": {
48
            "CFPropertyList\\": "src/CFPropertyList/"
49
        }
50
    },
51
    "require-dev": {
52
        "phpunit/phpunit": "^9.6.22",
53
        "squizlabs/php_codesniffer": "^3.2"
54
    },
55
    "scripts": {
56
        "test": [
57
            "vendor/bin/phpunit"
58
        ]
59
    }
60
}