-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
58 lines (58 loc) · 1.66 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
{
"name": "wnx/changelog-updater",
"description": "PHP CLI to update a CHANGELOG following the \"Keep a Changelog\" format with the latest release notes.",
"keywords": ["console", "cli", "changelog", "keep-a-changelog"],
"license": "MIT",
"support": {
"issues": "https://github.com/stefanzweifel/php-changelog-updater/issues",
"source": "https://github.com/stefanzweifel/php-changelog-updater"
},
"authors": [
{
"name": "Stefan Zweifel",
"email": "stefan@stefanzweifel.dev"
}
],
"require": {
"php": "^8.2",
"ext-dom": "*",
"league/commonmark": "^2.3.5",
"webmozart/assert": "^1.11",
"wnx/commonmark-markdown-renderer": "^1.0.2"
},
"require-dev": {
"larastan/larastan": "^2.0",
"laravel-zero/framework": "^11",
"laravel/pint": "^1.10",
"mockery/mockery": "^1.5.1",
"pestphp/pest": "^2",
"rector/rector": "^1.0"
},
"autoload": {
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"scripts": {
"build": "php changelog-updater app:build",
"psalm": "vendor/bin/psalm",
"test": "vendor/bin/pest",
"format": "vendor/bin/php-cs-fixer fix --allow-risky=yes"
},
"minimum-stability": "dev",
"prefer-stable": true,
"bin": ["builds/changelog-updater"]
}