-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
73 lines (73 loc) · 1.95 KB
/
composer.json
File metadata and controls
73 lines (73 loc) · 1.95 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "escarter/activity-log",
"description": "A Laravel package for logging user activity with admin and user views",
"version": "1.0.1.0",
"keywords": [
"laravel",
"activity",
"log",
"audit",
"user activity",
"livewire"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Escarter",
"email": "mbutuhescarter@gmail.com",
"homepage": "https://github.com/escarter",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"illuminate/support": "^10.48|^11.0",
"illuminate/database": "^10.48|^11.0",
"illuminate/events": "^10.48|^11.0",
"ext-json": "*"
},
"require-dev": {
"orchestra/testbench": "^6.0|^7.0|^8.0",
"phpunit/phpunit": "^9.5|^10.0",
"mockery/mockery": "^1.4",
"fakerphp/faker": "^1.9"
},
"autoload": {
"psr-4": {
"Escarter\\ActivityLog\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Escarter\\ActivityLog\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage",
"analyse": "vendor/bin/phpstan analyse"
},
"extra": {
"laravel": {
"providers": [
"Escarter\\ActivityLog\\ActivityLogServiceProvider"
],
"aliases": {
"ActivityLog": "Escarter\\ActivityLog\\Facades\\ActivityLog"
}
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"suggest": {
"spatie/laravel-activitylog": "For more advanced logging features",
"livewire/livewire": "Required if using Livewire components"
}
}