forked from ergebnis/github-changelog
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1.08 KB
/
composer.json
File metadata and controls
42 lines (42 loc) · 1.08 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
{
"name": "localheinz/github-changelog",
"description": "A script that generates a change log based on specified references.",
"authors": [
{
"name": "Andreas Möller",
"email": "am@localheinz.com"
}
],
"license": "MIT",
"config": {
"sort-packages": true
},
"require": {
"php": "^5.6 || ^7.0",
"beberlei/assert": "^2.6.4",
"knplabs/github-api": "^2.0.1",
"php-http/guzzle6-adapter": "^1.1.1",
"symfony/cache": "^3.1.5",
"symfony/console": "^3.1.5",
"symfony/stopwatch": "^3.1.5"
},
"require-dev": {
"codeclimate/php-test-reporter": "0.3.2",
"phpunit/phpunit": "^5.7.4",
"refinery29/php-cs-fixer-config": "0.6.5",
"refinery29/test-util": "0.9.6"
},
"autoload": {
"psr-4": {
"Localheinz\\GitHub\\ChangeLog\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Localheinz\\GitHub\\ChangeLog\\Test\\": "test"
}
},
"bin": [
"github-changelog"
]
}