-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
85 lines (85 loc) · 2.9 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "vaimo/composer-changelogs",
"type": "composer-plugin",
"license": "MIT",
"description": "Provide information about package changes based on changelog files that are bundled with releases; provide tools for generating documentation files from changelog sources",
"require": {
"php": ">=7.4.0",
"ext-json": "*",
"composer-plugin-api": "^1.0 || ^2.0",
"mustache/mustache": "^v2.12.0",
"seld/jsonlint": "^1.7.1",
"camspiers/json-pretty": "^1.0.2",
"symfony/process": ">=4.2"
},
"require-dev": {
"composer/composer": "^1.0 || ^2.0",
"vaimo/composer-changelogs-proxy": "1.0.0",
"squizlabs/php_codesniffer": "^3.6.2",
"phpcompatibility/php-compatibility": "^9.1.1",
"phpmd/phpmd": "^2.6.0",
"phpunit/phpunit": "^4.8.36",
"sebastian/phpcpd": "^1.4.3"
},
"config": {
"platform": {
"php": "7.4.13"
},
"allow-plugins": {
"vaimo/composer-changelogs-proxy": true
}
},
"support": {
"source": "https://github.com/vaimo/composer-changelogs",
"docs": "https://github.com/vaimo/composer-changelogs",
"issues": "https://github.com/vaimo/composer-changelogs/issues"
},
"authors": [
{
"name": "Allan Paiste",
"email": "allan.paiste@vaimo.com"
}
],
"keywords": [
"changelog files",
"grouped changes",
"semantic meaning for change",
"changelog json",
"documentation generators"
],
"extra": {
"class": "Vaimo\\ComposerChangelogs\\Plugin",
"changelog": {
"source": "changelog.json",
"output": {
"md": "CHANGELOG.md"
}
}
},
"scripts-descriptions": {
"code:test": "Run tests (which currently just means that all the commands are executed and expected to succeed)",
"code:lint": "Run static code analysis for the source code",
"code:fix": "Apply automatic fixes to the code based on the static code analysis (where applicable)",
"code:deps": "Make sure that dependencies have code that will actually work with platform requirements defined"
},
"scripts": {
"code:test": "composer changelog:generate && composer changelog:info && composer changelog:validate && composer changelog:version",
"code:lint": "bin/analyse",
"code:fix": "bin/normalise",
"code:deps": "bin/analyse-dependencies",
"post-install-cmd": "bin/bootstrap",
"post-update-cmd" : "bin/bootstrap",
"ci:build": "composer code:lint && composer code:deps && composer code:test"
},
"autoload": {
"psr-4": {
"Vaimo\\ComposerChangelogs\\": "src"
}
},
"repositories": [
{
"type": "path",
"url": "modules/proxy-plugin"
}
]
}