-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 1.15 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": "digilive/git-changelog",
"description": "Generate a changelog from git commits of the local repository",
"keywords": [
"php",
"git",
"changelog",
"generator"
],
"readme": "README.md",
"type": "library",
"minimum-stability": "stable",
"license": "BSD-3-Clause",
"authors": [
{
"name": "DigiLive",
"email": "[email protected]",
"homepage": "https://digilive.nl"
},
{
"name": "Mario",
"email": "[email protected]"
}
],
"support": {
"wiki": "https://github.com/DigiLive/gitChangelog/wiki",
"issues": "https://github.com/DigiLive/gitChangelog/issues"
},
"require": {
"php": "^7.3 || ^8.0",
"ext-mbstring": "*",
"symfony/process": "^5"
},
"require-dev": {
"phpunit/phpunit": "^9",
"mikey179/vfsstream": "^1.6"
},
"autoload": {
"psr-4": {
"DigiLive\\GitChangelog\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DigiLive\\GitChangelog\\Tests\\": "tests/"
}
}
}