-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
41 lines (41 loc) · 1.16 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
{
"name": "zenstruck/changelog",
"description": "Generate pretty release changelogs using the commit log and Github API.",
"homepage": "https://github.com/zenstruck/changelog",
"type": "library",
"license": "MIT",
"keywords": ["changelog", "generator"],
"authors": [
{
"name": "Kevin Bond",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.0",
"composer/semver": "^3.3",
"laravel-zero/phar-updater": "^1.1.1",
"symfony/cache": "^5.4",
"symfony/console": "^5.4",
"symfony/filesystem": "^5.4",
"symfony/http-client": "^5.4",
"symfony/polyfill-php80": "^1.16"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"symfony/phpunit-bridge": "^6.2",
"symfony/var-dumper": "^5.4",
"zenstruck/console-test": "^1.0"
},
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"autoload": {
"psr-4": { "Zenstruck\\Changelog\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Zenstruck\\Changelog\\Tests\\": "tests/" }
},
"bin": ["bin/changelog"]
}