forked from Roave/BackwardCompatibilityCheck
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
55 lines (55 loc) · 1.57 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
{
"name": "roave/backward-compatibility-check",
"description": "Tool to compare two revisions of a public API to check for BC breaks",
"require": {
"php": "^7.3",
"ext-json": "*",
"beberlei/assert": "^3.2.6",
"composer/composer": "^1.9.0",
"nikolaposa/version": "^3.2.0",
"ocramius/package-versions": "^1.5.1",
"roave/better-reflection": "^3.5.0",
"symfony/console": "^4.3.4",
"symfony/process": "^4.3.4",
"thecodingmachine/safe": "^0.1.16"
},
"license": "MIT",
"authors": [
{
"name": "James Titcumb",
"email": "[email protected]"
},
{
"name": "Marco Pivetta",
"email": "[email protected]"
}
],
"require-dev": {
"doctrine/coding-standard": "^6.0.0",
"infection/infection": "^0.15.0",
"phpstan/phpstan": "^0.11.16",
"phpstan/phpstan-beberlei-assert": "^0.11.1",
"phpstan/phpstan-phpunit": "^0.11.2",
"phpunit/phpunit": "^8.3.5",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "^3.4.2",
"thecodingmachine/phpstan-safe-rule": "^0.1.4",
"vimeo/psalm": "^3.5.3"
},
"autoload": {
"psr-4": {
"Roave\\BackwardCompatibility\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"RoaveTest\\BackwardCompatibility\\": "test/unit"
}
},
"bin": [
"bin/roave-backward-compatibility-check"
],
"config": {
"sort-packages": true
}
}