summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: ad9d3dbf5cb54f2935602852288dff59653dce8a (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
{
    "name": "theseer/fdomdocument",
    "description": "The classes contained within this repository extend the standard DOM to use exceptions at all occasions of errors instead of PHP warnings or notices. They also add various custom methods and shortcuts for convenience and to simplify the usage of DOM.",
    "homepage": "https://github.com/theseer/fDOMDocument",
    "license": "BSD-3-Clause",
    "authors": [
        {
            "name": "Arne Blankerts",
            "email": "arne@blankerts.de",
            "role": "lead"
        }
    ],
    "support": {
        "issues": "https://github.com/theseer/fDOMDocument/issues"
    },
    "require": {
        "php": ">=5.3.3",
        "ext-dom": "*",
        "lib-libxml": "*",
        "phpunit/phpunit": "^4.8.35|^5.6|^6.0"
    },
    "autoload": {
        "classmap": [
            "src/"
        ]
    }
}