-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
33 lines (33 loc) · 912 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
{
"name": "haroon-mahmood-4276/laravel-commands-history",
"description": "This package is to store command history in the database",
"type": "library",
"version": "v1.0.0",
"license": "MIT",
"autoload": {
"psr-4": {
"HaroonMahmood4276\\LaravelCommandsHistory\\": "src/"
}
},
"authors": [{
"name": "haroon-mahmood-4276",
"email": "[email protected]",
"role": "Developer"
}],
"require": {
"php": ">=8.0"
},
"extra": {
"laravel": {
"providers": [
"HaroonMahmood4276\\LaravelCommandsHistory\\CommandHistoryServiceProvider",
"HaroonMahmood4276\\LaravelCommandsHistory\\CommandEventServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true
}