summaryrefslogtreecommitdiff
path: root/plugins/af_readability/vendor/fivefilters/readability.php/composer.json
blob: 72706cca624e9902c9b014b0754c6a6433f00b33 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
    "name": "fivefilters/readability.php",
    "type": "library",
    "description": "A PHP port of Readability.js",
    "keywords": ["readability", "html"],
    "homepage": "https://github.com/fivefilters/readability.php",
    "license": "Apache-2.0",
    "repositories": [
        {
        "name": "masterminds/html5",
        "type": "vcs",
        "url": "https://dev.tt-rss.org/fox/html5-php.git"
        }
    ],
    "authors": [
        {
            "name": "Andres Rey",
            "email": "[email protected]",
            "role": "Original Developer"
        },
        {
            "name": "Keyvan Minoukadeh",
            "email": "[email protected]",
            "homepage": "https://www.fivefilters.org",
            "role": "Developer/Maintainer"
        }
    ],
    "autoload": {
        "psr-4": {
            "fivefilters\\Readability\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {"fivefilters\\Readability\\Test\\": "test"}
    },
    "require": {
        "php": ">=7.3.0",
        "ext-dom": "*",
        "ext-xml": "*",
        "ext-mbstring": "*",
        "psr/log": "^1.0",
        "masterminds/html5": "2.7.x-dev@dev",
        "league/uri": "^6.4"
    },
    "require-dev": {
        "phpunit/phpunit": "^9",
        "monolog/monolog": "^2.3"
    },
    "suggest": {
        "monolog/monolog": "Allow logging debug information"
    }
}