forked from betapeak/laravel-auditing-filesystem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
56 lines (56 loc) · 1.41 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
{
"name": "betapeak/laravel-auditing-filesystem",
"description": "A filesystem driver for the owen-it/laravel-auditing package. Allows storage of the audits in CSV files, across all registered Laravel disks.",
"keywords": [
"accountability",
"audit",
"auditing",
"changes",
"eloquent",
"history",
"log",
"logging",
"observer",
"laravel",
"lumen",
"record",
"revision",
"tracking",
"filesystem",
"csv",
"export"
],
"type": "package",
"license": "MIT",
"support": {
"issues": "https://github.com/betapeak/laravel-auditing-filesystem/issues",
"source": "https://github.com/betapeak/laravel-auditing-filesystem"
},
"authors": [
{
"name": "Yasen Slavov",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.0",
"ext-json": "*",
"owen-it/laravel-auditing": "^10.0|^11.0|^12.0",
"league/csv": "^9.0",
"league/flysystem": "~1.0"
},
"autoload": {
"psr-4": {
"BetaPeak\\Auditing\\Drivers\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BetaPeak\\Auditing\\Drivers\\Tests\\": "tests/"
}
},
"require-dev": {
"orchestra/testbench": "^5.1",
"league/flysystem-aws-s3-v3": "^1.0"
}
}