forked from betapeak/laravel-auditing-filesystem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 1014 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
34
35
36
{
"name": "kyagie/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.",
"type": "package",
"require": {
"php": "^8.3",
"ext-json": "*",
"owen-it/laravel-auditing": "^13.6",
"league/csv": "^9.16",
"league/flysystem": "^3.29"
},
"require-dev": {
"league/flysystem": "^3.29",
"league/flysystem-aws-s3-v3": "^3.29",
"phpunit/phpunit": "^11",
"orchestra/testbench": "^9.5",
"nesbot/carbon": "^3.8"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Kyagie\\Auditing\\Drivers\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Kyagie\\Auditing\\Drivers\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Arthur Kyagulanyi",
"email": "[email protected]"
}
]
}