This repository has been archived by the owner on Apr 25, 2023. It is now read-only.
forked from ComplYantCo/history
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
54 lines (54 loc) · 1.51 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
{
"name": "nastasin/history",
"description": "Eloquent model history tracking for Laravel",
"keywords": ["laravel", "log", "history", "tracking", "eloquent", "model"],
"homepage": "https://github.com/nastal/history",
"require": {
"php": "^7.2|^7.2.5|^7.3|^8.0|^8.1",
"illuminate/support": "^6.0|^7.0|^8.0|^9.0"
},
"license": "MIT",
"authors": [
{
"name": "Sean Cheung",
"email": "[email protected]"
},
{
"name": "Alex Nastasin",
"email": "[email protected]",
"homepage": "https://nastas.in",
"role": "Fork developer"
}
],
"autoload": {
"psr-4": {
"Nastasin\\History\\": "src/"
}
},
"scripts": {
"test": "phpunit",
"test:dist": "phpunit --coverage-clover clover.xml",
"test:coverage": "php-coveralls -v -x clover.xml -o ./logs --exclude-no-stmt"
},
"autoload-dev": {
"psr-4": {
"Nastasin\\History\\Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^8.3|^8.4|^9.0",
"orchestra/testbench": "^4.8|^5.2|^6.2",
"mockery/mockery": "^1.2",
"php-coveralls/php-coveralls": "^2.1"
},
"extra": {
"laravel": {
"providers": [
"Nastasin\\History\\HistoryServiceProvider"
],
"aliases": {
"History": "Nastasin\\History\\History"
}
}
}
}