summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 40140133719d298dad76b90f0107f0a2ae0eca5a (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
{
    "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|^2.0|^3.0",
        "ext-curl": "*",
        "ext-intl": "*",
        "ext-libxml": "*",
        "ext-openssl": "*",
        "ext-pcre": "*",
        "ext-spl": "*",
        "ext-json": "*",
        "ext-pdo_sqlite": "*",
        "symfony/console": "^4.4|^5.0",
        "composer/package-versions-deprecated": "^1.8",
        "league/tactician": "^1.0",
        "laminas/laminas-diagnostics": "^1.3"
    },
    "require-dev": {
        "phpunit/php-timer": "^2.0"
    },
    "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/"
        }
    }
}