-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
51 lines (51 loc) · 1.12 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
{
"name": "markwalet/laravel-git-state",
"description": "A Laravel package that gives you information about the current git state.",
"type": "library",
"license": "MIT",
"support": {
"issues": "https://github.com/markwalet/laravel-git-state/issues"
},
"authors": [
{
"name": "Mark Walet",
"email": "[email protected]",
"homepage": "https://markwalet.me",
"role": "Owner"
}
],
"require": {
"php": "^8.1",
"laravel/framework": "^10.0|^11.0|^12.0",
"phpoption/phpoption": ">=1.8",
"webmozart/assert": "^1.10"
},
"require-dev": {
"phpunit/phpunit": "^10.5|^11.0",
"orchestra/testbench": "8.*|9.*|10.*"
},
"autoload": {
"psr-4": {
"MarkWalet\\GitState\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MarkWalet\\GitState\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"extra": {
"laravel": {
"providers": [
"MarkWalet\\GitState\\GitStateServiceProvider"
],
"aliases": {
"GitState": "MarkWalet\\GitState\\Facades\\GitState"
}
}
}
}