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
|
{
"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": ">=5.5",
"composer/semver": "^1.0",
"ext-curl": "*",
"ext-intl": "*",
"ext-libxml": "*",
"ext-openssl": "*",
"ext-pcre": "*",
"ext-spl": "*",
"ext-json": "*",
"ext-pdo_sqlite": "*"
},
"require-dev": {
"symfony/console": "^2.5||^3.0",
"psr/log": "^1.0",
"monolog/monolog": "^1.10",
"bartlett/phpunit-loggertestlistener": "^1.7",
"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/Bartlett/CompatInfoDb"
}
},
"autoload-dev": {
"psr-4": {
"Bartlett\\Tests\\CompatInfoDb\\": "tests/"
}
}
}
|