summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 76baccf69a3b43d3a44ec05c86d5e163c3e84056 (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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
    "name": "bartlett/php-compatinfo",
    "description": "Find out the minimum version and the extensions required for a piece of code to run",
    "keywords": ["compatibility", "version"],
    "type": "library",
    "license": "BSD-3-Clause",
    "homepage": "http://php5.laurent-laville.org/compatinfo/",
    "support": {
        "source": "https://github.com/llaville/php-compat-info",
        "issues": "https://github.com/llaville/php-compat-info/issues"
    },
    "repositories": [
        {
            "type": "pear",
            "url": "https://pear.php.net"
        }
    ],
    "require": {
        "php": ">=5.5",
        "ext-libxml": "*",
        "ext-pcre": "*",
        "ext-spl": "*",
        "ext-json": "*",
        "ext-pdo_sqlite": "*",
        "bartlett/php-reflect": "^4.2",
        "bartlett/php-compatinfo-db": "^1.23"
    },
    "require-dev": {
        "doctrine/cache": "^1.3",
        "psr/log": "^1.0",
        "monolog/monolog": "^1.10",
        "bartlett/monolog-callbackfilterhandler": "^1.0",
        "bartlett/monolog-growlhandler": "^1.0",
        "bartlett/phpunit-loggertestlistener": "^1.5",
        "bartlett/umlwriter": "^1.0"
    },
    "suggest": {
        "doctrine/cache": "Allow caching results, since bartlett/php-reflect 2.2",
        "psr/log": "Allow logging events with the LogPlugin",
        "monolog/monolog": "Allow logging events with the LogPlugin",
        "bartlett/monolog-callbackfilterhandler": "Advanced filtering strategies for Monolog",
        "bartlett/monolog-growlhandler": "Sends notifications to Growl for Monolog",
        "bartlett/phpunit-loggertestlistener": "Allow logging unit tests to your favorite PSR-3 logger interface",
        "bartlett/umlwriter": "Allow writing UML class diagrams (Graphviz or PlantUML)"
    },
    "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"
        }
    ],
    "bin": [
        "bin/phpcompatinfo"
    ],
    "autoload": {
        "psr-4": {
            "Bartlett\\": "src/Bartlett"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Bartlett\\Tests\\CompatInfo\\": "tests/"
        }
    },
    "config": {
        "platform": {
            "php": "5.5.0"
        },
        "optimize-autoloader": true
    }
}