-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 1 KB
/
composer.json
File metadata and controls
40 lines (40 loc) · 1 KB
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": "dipesh79/logarc-laravel",
"description": "LogArc Laravel - A Laravel package for logging with LogArc.",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Dipesh79\\LogArcLaravel\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Dipesh79\\LogArcLaravel\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Dipesh79",
"email": "dipeshkhanal79@gmail.com",
"homepage": "https://www.khanaldipesh.com.np",
"role": "Maintainer"
}
],
"minimum-stability": "stable",
"require": {},
"require-dev": {
"phpunit/phpunit": "^9.0",
"orchestra/testbench": "^7.0"
},
"extra": {
"laravel": {
"providers": [
"Dipesh79\\LogArcLaravel\\LogArcServiceProvider"
],
"aliases": {
"LogArc": "Dipesh79\\LogArcLaravel\\Facades\\LogArc"
}
}
}
}