-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
79 lines (79 loc) · 2.1 KB
/
Copy pathcomposer.json
File metadata and controls
79 lines (79 loc) · 2.1 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
74
75
76
77
78
79
{
"name": "testmonitor/eloquent-revisable",
"description": "A Laravel package to track revisions of Eloquent models, allowing you to easily view and restore previous versions of your data.",
"type": "library",
"keywords": [
"testmonitor",
"eloquent",
"model",
"revisions",
"versioning",
"history",
"audit"
],
"authors": [
{
"name": "Thijs Kok",
"email": "tkok@testmonitor.com",
"homepage": "https://www.testmonitor.com/",
"role": "Lead Developer"
},
{
"name": "Stephan Grootveld",
"email": "sgrootveld@testmonitor.com",
"homepage": "https://www.testmonitor.com/",
"role": "Developer"
},
{
"name": "Frank Keulen",
"email": "fkeulen@testmonitor.com",
"homepage": "https://www.testmonitor.com/",
"role": "Developer"
}
],
"minimum-stability": "stable",
"require": {
"php": "^8.4",
"illuminate/contracts": "^12.0|^13.0",
"illuminate/database": "^12.0|^13.0",
"illuminate/support": "^12.0|^13.0",
"jfcherng/php-diff": "^7.0",
"ssddanbrown/htmldiff": "^2.0"
},
"require-dev": {
"laravel/pint": "^1.29",
"orchestra/testbench": "^10.0",
"phpunit/phpunit": "^11.0",
"squizlabs/php_codesniffer": "^4.0"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"autoload": {
"psr-4": {
"TestMonitor\\Revisable\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TestMonitor\\Revisable\\Tests\\": "tests"
},
"classmap": [
"tests/TestCase.php"
]
},
"extra": {
"laravel": {
"providers": [
"TestMonitor\\Revisable\\RevisableServiceProvider"
]
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"prefer-stable": true,
"license": "MIT"
}