-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
48 lines (48 loc) · 1.18 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
{
"name": "aryehraber/statamic-logbook",
"type": "statamic-addon",
"description": "Manage and view log files in the CP.",
"keywords": [
"statamic",
"logbook",
"logs"
],
"homepage": "https://github.com/aryehraber/statamic-logbook",
"license": "MIT",
"require": {
"rap2hpoutre/laravel-log-viewer": "^2.3.0",
"statamic/cms": "^4.0 || ^5.0"
},
"autoload": {
"psr-4": {
"AryehRaber\\Logbook\\": "src"
}
},
"authors": [
{
"name": "Aryeh Raber",
"email": "[email protected]",
"homepage": "https://aryeh.dev",
"role": "Developer"
}
],
"extra": {
"statamic": {
"name": "Logbook",
"description": "Manage and view log files in the CP.",
"version": "3.2.0"
},
"laravel": {
"providers": [
"AryehRaber\\Logbook\\LogbookServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"pixelfear/composer-dist-plugin": true
}
}
}