forked from guywithnose/release-notes
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
57 lines (57 loc) · 1.52 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
{
"name": "guywithnose/release-notes",
"description": "A script for building release notes for a github-based project.",
"keywords": ["release", "github"],
"authors": [
{
"name": "Anthony Bittle",
"email": "guywithnose@gmail.com",
"role": "Developer"
},
{
"name": "Spencer Rinehart",
"email": "anubis@overthemonkey.com",
"role": "Developer"
}
],
"license": "MIT",
"config": {
"platform": {
"php": "7.4"
},
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true
}
},
"require": {
"php": "^7.4 || ^8.0",
"clue/graph": "~0.9.0",
"gregwar/cache": "~1.0",
"guzzlehttp/guzzle": "^7.0.1",
"herrera-io/version": "~1.1",
"http-interop/http-factory-guzzle": "^1.0",
"knplabs/github-api": "^3.0",
"lesstif/php-jira-rest-client": "^1.7.0",
"nubs/random-name-generator": "~0.1.0",
"nubs/sensible": "~0.5.0",
"nubs/which": "~1.0",
"symfony/console": "~3.0",
"symfony/process": "~5.4"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"squizlabs/php_codesniffer": "^3.7"
},
"bin": ["bin/buildRelease"],
"autoload": {
"psr-4": {
"Guywithnose\\ReleaseNotes\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Guywithnose\\ReleaseNotes\\Tests\\": "tests/src"
}
}
}