-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
47 lines (47 loc) · 1004 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
41
42
43
44
45
46
47
{
"name": "markwalet/laravel-changelog",
"description": "A Laravel package that prevents merge conflicts on your changelog file.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Mark Walet",
"email": "[email protected]"
}
],
"require": {
"php": "8.*",
"laravel/framework": "^10.0|^11.0",
"markwalet/laravel-git-state": "~1.0",
"ext-simplexml": "*",
"ext-dom": "*"
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"mockery/mockery": "~1.4",
"orchestra/testbench": "8.*|9.*"
},
"autoload": {
"psr-4": {
"MarkWalet\\Changelog\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MarkWalet\\Changelog\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"MarkWalet\\Changelog\\ChangelogServiceProvider"
],
"aliases": {
"Changelog": "MarkWalet\\Changelog\\Facades\\Changelog"
}
}
}
}