-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
65 lines (65 loc) · 1.76 KB
/
composer.json
File metadata and controls
65 lines (65 loc) · 1.76 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "mortenscheel/release-notes-cli",
"description": "Show formatted Github release notes in the terminal.",
"license": "MIT",
"type": "project",
"keywords": [
"release notes",
"packagist",
"laravel zero",
"console",
"cli"
],
"authors": [
{
"name": "Morten Scheel",
"email": "morten@mortenscheel.com"
}
],
"homepage": "https://github.com/mortenscheel/release-notes-cli",
"support": {
"issues": "https://github.com/mortenscheel/release-notes-cli/issues",
"source": "https://github.com/mortenscheel/release-notes-cli"
},
"require": {
"php": "^8.1",
"composer/semver": "^3.3",
"guzzlehttp/guzzle": "^7.5",
"illuminate/database": "^10.6",
"laravel-zero/framework": "^10.0.2",
"league/commonmark": "^2.4",
"nunomaduro/termwind": "^1.15.1",
"sammyjo20/saloon-laravel": "^2.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.30",
"fakerphp/faker": "^1.21.0",
"laravel/pint": "^1.8",
"mockery/mockery": "^1.5.1",
"nunomaduro/larastan": "^2.5",
"pestphp/pest": "^2.4"
},
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"bin": "release-notes",
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": true,
"ergebnis/composer-normalize": true
},
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
}
}