-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
69 lines (69 loc) · 1.96 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
59
60
61
62
63
64
65
66
67
68
69
{
"name": "jaymeh/changelog-checker",
"description": "This library was built to parse single entries from conventional changelogs.",
"keywords": [
"changelog",
"conventional commits",
"conventional changelog",
"console",
"cli"
],
"homepage": "https://jaymeh.co.uk",
"type": "project",
"license": "MIT",
"support": {
"issues": "https://github.com/jaymeh/conventional-changelog-parser/issues",
"source": "https://github.com/jaymeh/conventional-changelog-parser"
},
"authors": [
{
"name": "Jamie Sykes",
"email": "jaymeh@users.noreply.github.com"
}
],
"require": {
"php": "^8.0",
"laravel-zero/framework": "^9.1.3",
"nunomaduro/termwind": "^1.13"
},
"require-dev": {
"fossbarrow/laravel-phpcs": "dev-main",
"laravel/pint": "^1.0",
"marcocesarato/php-conventional-changelog": "^1.15",
"mockery/mockery": "^1.4.4",
"pestphp/pest": "^1.21.3"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"scripts": {
"changelog": "conventional-changelog",
"release": "conventional-changelog --commit",
"release:patch": "conventional-changelog --patch --commit",
"release:minor": "conventional-changelog --minor --commit",
"release:major": "conventional-changelog --major --commit"
},
"minimum-stability": "dev",
"prefer-stable": true,
"bin": [
"changelog-checker"
],
"version": "1.2.4"
}