-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathcomposer.json
48 lines (48 loc) · 1.31 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
{
"name": "roave/backward-compatibility-check",
"description": "Tool to compare two revisions of a public API to check for BC breaks",
"require": {
"php": "^7.2",
"ext-json": "*",
"beberlei/assert": "^2.9",
"composer/composer": "^1.6",
"nikolaposa/version": "^3.1.0",
"roave/better-reflection": "^3.0",
"symfony/console": "^4.0",
"symfony/process": "^4.0"
},
"license": "MIT",
"authors": [
{
"name": "James Titcumb",
"email": "james@asgrim.com"
}
],
"require-dev": {
"doctrine/coding-standard": "^4.0",
"infection/infection": "^0.9.1",
"phpstan/phpstan": "^0.10.3",
"phpstan/phpstan-beberlei-assert": "^0.10",
"phpstan/phpstan-phpunit": "^0.10",
"phpunit/phpunit": "^7.0",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "^3.2",
"vimeo/psalm": "^2.0"
},
"autoload": {
"psr-4": {
"Roave\\BackwardCompatibility\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"RoaveTest\\BackwardCompatibility\\": "test/unit"
}
},
"bin": [
"bin/roave-backward-compatibility-check"
],
"config": {
"sort-packages": true
}
}