summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: cc1ff90c1b378165bee6f43c0ed582c61a1a5be2 (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
53
54
55
56
57
58
59
60
61
62
63
{
    "name": "bartlett/php-compatinfo-db",
    "description": "Reference Database to be used with php-compatinfo library",
    "keywords": ["compatibility", "database", "reference"],
    "type": "library",
    "license": "BSD-3-Clause",
    "homepage": "http://php5.laurent-laville.org/compatinfo/",
    "support": {
        "source": "https://github.com/llaville/php-compatinfo-db",
        "issues": "https://github.com/llaville/php-compatinfo-db/issues"
    },
    "require": {
        "php": "^7.1",
        "composer/semver": "^1.0",
        "ext-curl": "*",
        "ext-intl": "*",
        "ext-libxml": "*",
        "ext-openssl": "*",
        "ext-pcre": "*",
        "ext-spl": "*",
        "ext-json": "*",
        "ext-pdo_sqlite": "*",
        "symfony/console": "^3.0||^4.0",
        "jean85/pretty-package-versions": "^1.2",
        "league/tactician": "^1.0",
        "laminas/laminas-diagnostics": "^1.3"
    },
    "require-dev": {
        "psr/log": "^1.0",
        "monolog/monolog": "^1.10",
        "bartlett/phpunit-loggertestlistener": "^2.0",
        "phpunit/php-timer": "^2.0"
    },
    "suggest": {
        "symfony/console": "Allow to rebuild the Reference CompatInfo Database",
        "psr/log": "Allow logging events with the LogPlugin",
        "monolog/monolog": "Allow logging events with the LogPlugin",
        "bartlett/phpunit-loggertestlistener": "Allow logging unit tests to your favorite PSR-3 logger interface"
    },
    "authors": [
        {
            "name": "Laurent Laville",
            "email": "pear@laurent-laville.org",
            "homepage": "https://github.com/llaville",
            "role": "Lead"
        },
        {
            "name": "Remi Collet",
            "homepage": "https://github.com/remicollet",
            "role": "Contributor"
        }
    ],
    "autoload": {
        "psr-4": {
            "Bartlett\\CompatInfoDb\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Bartlett\\Tests\\CompatInfoDb\\": "tests/"
        }
    }
}