-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
103 lines (103 loc) · 3.47 KB
/
composer.json
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "bartlett/php-compatinfo-db",
"description": "Reference Database of all functions, constants, classes, interfaces on PHP standard distribution and about 110 extensions",
"keywords": ["compatibility", "database", "reference"],
"type": "library",
"license": "BSD-3-Clause",
"homepage": "https://github.com/llaville/php-compatinfo-db",
"support": {
"source": "https://github.com/llaville/php-compatinfo-db",
"issues": "https://github.com/llaville/php-compatinfo-db/issues"
},
"require": {
"php": "^8.1",
"ext-json": "*",
"ext-pcre": "*",
"ext-pdo": "*",
"ext-phar": "*",
"ext-spl": "*",
"composer-runtime-api": "^2.0",
"composer/semver": "^3.0",
"doctrine/orm": "^2.12",
"doctrine/dbal": "^3.2",
"symfony/cache": "^6.4 || ^7.0",
"symfony/config": "^6.4 || ^7.0",
"symfony/console": "^6.4 || ^7.0",
"symfony/dependency-injection": "^6.4 || ^7.0",
"symfony/event-dispatcher": "^6.4 || ^7.0",
"symfony/finder": "^6.4 || ^7.0",
"symfony/http-client": "^6.4 || ^7.0",
"symfony/messenger": "^6.4 || ^7.0",
"symfony/polyfill-php84": "^1.0",
"symfony/process": "^6.4 || ^7.0",
"symfony/requirements-checker": "^2.0",
"symfony/stopwatch": "^6.4 || ^7.0"
},
"require-dev": {
"psr/log": "^3.0",
"symfony/framework-bundle": "^6.4 || ^7.0",
"bamarni/composer-bin-plugin": "^1.8"
},
"authors": [
{
"name": "Laurent Laville",
"homepage": "https://github.com/llaville",
"role": "Lead"
},
{
"name": "Remi Collet",
"homepage": "https://github.com/remicollet",
"role": "Contributor"
}
],
"bin": [
"bin/compatinfo-db"
],
"autoload": {
"psr-4": {
"Bartlett\\CompatInfoDb\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Bartlett\\CompatInfoDb\\Tests\\": "tests/"
}
},
"prefer-stable": true,
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"bamarni/composer-bin-plugin": true
}
},
"extra": {
"branch-alias": {
"dev-master": "6.x-dev"
},
"bamarni-bin": {
"bin-links": true,
"target-directory": "vendor-bin",
"forward-command": true
}
},
"scripts": {
"bin": "echo 'bin not installed'",
"post-update-cmd": [
"@composer bin all update --ansi"
],
"post-install-cmd": [
"@composer bin all install --ansi"
],
"code:check": "vendor/bin/phpstan analyse --configuration .github/linters/phpstan.neon.dist --ansi --verbose",
"code:lint": "vendor/bin/phplint --configuration .github/linters/.phplint.yml --verbose --progress=indicator --ansi",
"style:check": "vendor/bin/phpcs --standard=.github/linters/.phpcs.xml.dist --warning-severity=0 --colors",
"tests:unit": "vendor/bin/phpunit --configuration phpunit.xml.dist"
},
"scripts-descriptions" : {
"code:check": "Run PHPStan code analysis on PHP CompatInfo DB source code",
"code:lint": "Run PHPLint on PHP CompatInfo DB source code",
"style:check": "Run PHP CodeSniffer on PHP CompatInfo DB source code",
"tests:unit": "Run unit tests"
}
}