summaryrefslogtreecommitdiff
path: root/composer.json
blob: 5a26260bc8980fd95b4c8a9ded6a2e12fe3c70ff (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
28
29
{
    "name": "andreskrey/Readability",
    "type": "library",
    "description": "A PHP port for Readability.js",
    "keywords": ["readability", "html"],
    "homepage": "https://github.com/andreskrey/readability",
    "license": "MIT",
    "authors": [
        {
            "name": "Andres Rey",
            "email": "[email protected]",
            "role": "Lead Developer"
        }
    ],
    "autoload": {
        "psr-4": {
            "andreskrey\\Readability\\": "src/"
        }
    },
    "require": {
        "php": ">=5.4.0",
        "ext-dom": "*",
        "ext-xml": "*",
        "league/html-to-markdown": "^4.2"
    },
    "require-dev": {
        "phpunit/phpunit": "4.*"
    }
}