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",
"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"
},
"require": {
"php": "^7.1.3",
"ext-libxml": "*",
"ext-pcre": "*",
"ext-spl": "*",
"ext-json": "*",
"ext-pdo": "*",
"ext-pdo_sqlite": "*",
"bartlett/php-reflect": "^4.4",
"bartlett/php-compatinfo-db": "^2.0",
"jean85/pretty-package-versions": "^1.5",
"psr/log": "^1.0"
},
"require-dev": {
"monolog/monolog": "^1.10"
},
"suggest": {
"doctrine/cache": "Allow caching results, since bartlett/php-reflect 2.2"
},
"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": {
"optimize-autoloader": true
}
}
|