-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (41 loc) · 1.12 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
{
"name": "konekt/history",
"description": "Eloquent Model History for Laravel",
"type": "library",
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"keywords": ["history", "eloquent", "laravel", "konekt"],
"support": {
"source": "https://github.com/artkonekt/history",
"issues": "https://github.com/artkonekt/history/issues"
},
"require": {
"php": "^8.1",
"konekt/concord": "^1.13",
"konekt/enum": "^3.1|^4.0",
"konekt/enum-eloquent": "^1.9",
"illuminate/database": "^10.10.1|^11.0|^12.0",
"illuminate/support": "^10.10.1|^11.0|^12.0",
"konekt/laravel-migration-compatibility": "^1.6"
},
"require-dev": {
"phpunit/phpunit": "^10.0|^11.0",
"orchestra/testbench": "^8.0|^9.0|^10.0"
},
"autoload": {
"psr-4": {
"Konekt\\History\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Konekt\\History\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.6.x-dev"
}
}
}