-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 927 Bytes
/
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
{
"name": "konigbach/changelog-manager",
"description": "Manages changelog avoiding git conflicts",
"require": {
"php": "^8.2",
"illuminate/contracts": "^9.0 || ^10.0",
"illuminate/support": "^9.0 || ^10.0",
"symfony/yaml": "^6.2"
},
"require-dev": {
"laravel/pint": "^1.6",
"nunomaduro/collision": "^6.1",
"nunomaduro/larastan": "^2.0",
"orchestra/testbench": "^7.1",
"phpunit/phpunit": "^9.5.0",
"roave/security-advisories": "dev-master"
},
"autoload": {
"psr-4": {
"Konigbach\\ChangelogManager\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Konigbach\\ChangelogManager\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Konigbach\\ChangelogManager\\ChangelogManagerServiceProvider"
]
}
},
"minimum-stability": "stable",
"prefer-stable": true
}