-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
59 lines (59 loc) · 1.56 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
52
53
54
55
56
57
58
59
{
"name": "msonowal/laravel-auditor",
"description": "A simple mongo activity logger to record various events of your laravel application",
"type": "library",
"keywords":
[
"msonowal",
"mongo",
"audit",
"laravel",
"log",
"user",
"activity"
],
"require": {
"php" : "^7.1|^8.0",
"illuminate/config": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0|^8.0|^9.0",
"illuminate/database": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0|^8.0|^9.0",
"illuminate/support": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0|^8.0|^9.0",
"jenssegers/mongodb": "~3.3|~3.4"
},
"require-dev": {
"vlucas/phpdotenv": "^2.4",
"phpunit/phpunit": "^7.4|^9.0",
"orchestra/testbench": "^3.4"
},
"suggest": {
"bhavinjr/auditor-view": "This package provides a beautifull UI to view the logs powered by Vue."
},
"license": "MIT",
"authors": [
{
"name": "Manash Jyoti Sonowal (aug)",
"email": "[email protected]",
"homepage": "https://www.claritytech.io",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Msonowal\\Audit\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Msonowal\\Audit\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Msonowal\\Audit\\AuditServiceProvider"
]
}
}
}