-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
composer.json
75 lines (75 loc) · 1.87 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "yajra/laravel-auditable",
"description": "A simple Laravel user auditing package for Eloquent Model.",
"keywords": [
"yajra",
"laravel",
"auditable"
],
"homepage": "https://github.com/yajra/laravel-auditable",
"license": "MIT",
"authors": [
{
"name": "Arjay Angeles",
"email": "[email protected]",
"homepage": "http://yajrabox.com",
"role": "Developer"
}
],
"require": {
"php": "^8.2",
"illuminate/support": "^11.0",
"illuminate/database": "^11.0"
},
"require-dev": {
"larastan/larastan": "^2.9.1",
"laravel/pint": "^1.14",
"rector/rector": "^1.0",
"orchestra/testbench": "^9.0",
"pestphp/pest": "^2.34",
"pestphp/pest-plugin-laravel": "^2.3"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"autoload": {
"psr-4": {
"Yajra\\Auditable\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Yajra\\Auditable\\Tests\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "11.x-dev"
},
"laravel": {
"providers": [
"Yajra\\Auditable\\AuditableServiceProvider"
]
}
},
"scripts": {
"test": "./vendor/bin/pest",
"pint": "./vendor/bin/pint",
"rector": "./vendor/bin/rector",
"stan": "./vendor/bin/phpstan analyse --memory-limit=2G --ansi --no-progress --no-interaction --configuration=phpstan.neon.dist",
"pr": [
"@rector",
"@pint",
"@stan",
"@test"
]
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/yajra"
}
]
}