-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
67 lines (67 loc) · 1.94 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
64
65
66
67
{
"name": "spiriitlabs/composer-write-changelogs",
"type": "composer-plugin",
"description": "Display and write to textual files changelogs after each composer update",
"keywords": [
"composer",
"plugin",
"update",
"changelog",
"files"
],
"license": "MIT",
"authors": [
{
"name": "Dev Spiriit",
"email": "dev@spiriit.com"
}
],
"require": {
"php": ">=7.4",
"ext-curl": "*",
"ext-json": "*",
"composer-plugin-api": "^1.0 || ^2.0",
"symfony/http-client": "^5.4 || ^6.2"
},
"require-dev": {
"composer/composer": "^1.0.0-alpha10@dev || ^2.0@dev",
"composer/semver": "^1.2 || ^2.0 || ^3.2",
"ekino/phpstan-banned-code": "*",
"friendsofphp/php-cs-fixer": "^3.0",
"infection/infection": "^0.26",
"phpro/grumphp": "^1.11 || ^1.15",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-phpunit": "*",
"phpunit/phpunit": "^9.5 | ^10.1",
"symplify/coding-standard": "^9.0 | ^11.3",
"symplify/phpstan-rules": "^11.2"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"infection/extension-installer": true,
"phpstan/extension-installer": true,
"phpro/grumphp": true
}
},
"extra": {
"class": "Spiriit\\ComposerWriteChangelogs\\ChangelogsPlugin"
},
"autoload": {
"psr-4": {
"Spiriit\\ComposerWriteChangelogs\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Spiriit\\ComposerWriteChangelogs\\tests\\": "tests/"
}
},
"scripts": {
"cs": "vendor/bin/php-cs-fixer fix --verbose",
"test": "vendor/bin/phpunit",
"stan": "vendor/bin/phpstan analyse",
"infection": "XDEBUG_MODE=coverage vendor/bin/infection"
}
}