forked from Roave/BackwardCompatibilityCheck
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
63 lines (63 loc) · 1.77 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
{
"name": "roave/backward-compatibility-check",
"description": "Tool to compare two revisions of a public API to check for BC breaks",
"require": {
"php": "~8.1.0 || ~8.2.0",
"ext-json": "*",
"azjezz/psl": "^2.3.1",
"composer/composer": "^2.5.1",
"nikic/php-parser": "^4.15.3",
"nikolaposa/version": "^4.1.0",
"ocramius/package-versions": "^2.7.0",
"roave/better-reflection": "^6.5.0",
"symfony/console": "^6.2.3"
},
"license": "MIT",
"authors": [
{
"name": "James Titcumb",
"email": "[email protected]"
},
{
"name": "Marco Pivetta",
"email": "[email protected]"
}
],
"require-dev": {
"doctrine/coding-standard": "^11.0.0",
"php-standard-library/psalm-plugin": "^2.2.1",
"phpunit/phpunit": "^9.5.27",
"psalm/plugin-phpunit": "^0.18.4",
"roave/infection-static-analysis-plugin": "^1.27.0",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "^3.7.1",
"vimeo/psalm": "^5.4.0"
},
"conflict": {
"revolt/event-loop": "<0.2.5",
"symfony/process": "<5.3.7"
},
"autoload": {
"psr-4": {
"Roave\\BackwardCompatibility\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"RoaveTest\\BackwardCompatibility\\": "test/unit"
}
},
"bin": [
"bin/roave-backward-compatibility-check"
],
"config": {
"sort-packages": true,
"platform": {
"php": "8.1.99"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"infection/extension-installer": true
}
}
}