-
Notifications
You must be signed in to change notification settings - Fork 59
/
composer.json
63 lines (63 loc) · 1.8 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.2.0 || ~8.3.0",
"azjezz/psl": "^3.0.2",
"composer/composer": "^2.7.6",
"nikic/php-parser": "^4.19.1",
"nikolaposa/version": "^4.2.0",
"ocramius/package-versions": "^2.8.0",
"roave/better-reflection": "^6.26.0",
"symfony/console": "^7.0.7"
},
"license": "MIT",
"authors": [
{
"name": "James Titcumb",
"email": "james@asgrim.com"
},
{
"name": "Marco Pivetta",
"email": "ocramius@gmail.com"
}
],
"require-dev": {
"doctrine/coding-standard": "^12.0.0",
"estahn/phpunit-json-assertions": "^4.0",
"php-standard-library/psalm-plugin": "^2.3.0",
"phpunit/phpunit": "^9.6.19",
"psalm/plugin-phpunit": "^0.19.0",
"roave/infection-static-analysis-plugin": "^1.35.0",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "^3.10.0",
"vimeo/psalm": "^5.24.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.2.99"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"infection/extension-installer": true
}
}
}