-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.3 KB
/
Copy pathcomposer.json
File metadata and controls
52 lines (52 loc) · 1.3 KB
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
{
"name": "ion-bazan/composer-diff",
"type": "composer-plugin",
"description": "Compares composer.lock changes and generates Markdown report so you can use it in PR description.",
"keywords": [
"composer",
"composer.lock",
"diff",
"packages",
"markdown",
"pullrequest",
"github",
"packagist"
],
"license": "MIT",
"authors": [
{
"name": "Ion Bazan",
"email": "ion.bazan@gmail.com"
}
],
"require": {
"php": ">=7.2",
"ext-json": "*",
"composer-plugin-api": "^2.0"
},
"require-dev": {
"composer/composer": "^2.0",
"symfony/console": "^5.4 || ^6.0 || ^7.0 || ^8.0",
"symfony/phpunit-bridge": "^5.4.33 || ^6.0 || ^7.0 || ^8.0"
},
"suggest": {
"composer/composer": "To use the binary without composer runtime",
"symfony/console": "To use the binary without composer runtime"
},
"extra": {
"class": "IonBazan\\ComposerDiff\\Composer\\Plugin"
},
"autoload": {
"psr-4": {
"IonBazan\\ComposerDiff\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"IonBazan\\ComposerDiff\\Tests\\": "tests/"
}
},
"bin": [
"composer-diff"
]
}