-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
60 lines (60 loc) · 1.76 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
{
"name": "jwage/changelog-generator",
"type": "library",
"description": "Generate a markdown changelog document from a GitHub milestone.",
"keywords": ["changelog", "github"],
"homepage": "https://www.jwage.com",
"license": "MIT",
"authors": [
{"name": "Jonathan Wage", "email": "jonwage@gmail.com"}
],
"require": {
"php": "^8.1.0",
"ext-mbstring": "*",
"composer-runtime-api": "^2.2.0",
"php-http/curl-client": "^2.2.1",
"php-http/discovery": "^1.14.3",
"php-http/httplug": "^2.3.0",
"psr/http-client": "^1.0.1",
"psr/http-factory": "^1.0.1",
"psr/http-message": "^1.0.1",
"symfony/console": "^5.0.0 || ^6.1.2",
"laminas/laminas-diactoros": "^2.13.0"
},
"require-dev": {
"doctrine/coding-standard": "^9.0.0",
"phpstan/extension-installer": "^1.1.0",
"phpstan/phpstan": "^1.8.2",
"phpstan/phpstan-deprecation-rules": "^1.0.0",
"phpstan/phpstan-phpunit": "^1.1.1",
"phpstan/phpstan-strict-rules": "^1.3.0",
"phpunit/phpunit": "^9.5.21"
},
"autoload": {
"psr-4": {
"ChangelogGenerator\\": "src/ChangelogGenerator"
}
},
"autoload-dev": {
"psr-4": {
"ChangelogGenerator\\Tests\\": "tests/ChangelogGenerator/Tests"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"bin": [
"bin/changelog-generator"
],
"minimum-stability": "dev",
"prefer-stable": true
}