-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
75 lines (75 loc) · 1.7 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": "audunru/model-history",
"description": "Log changes to Laravel models",
"keywords": [
"laravel",
"model",
"audit",
"log",
"history",
"changes"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Audun Rundberg",
"email": "audun@rundberg.no"
}
],
"require": {
"php": "^8.2",
"laravel/framework": "^11.0",
"spatie/laravel-package-tools": "^1.9"
},
"require-dev": {
"fakerphp/faker": "^1.12",
"friendsofphp/php-cs-fixer": "^3.0",
"mockery/mockery": "^1.4",
"orchestra/testbench": "^9.0",
"php-coveralls/php-coveralls": "^2.2",
"phpmd/phpmd": "^2.10",
"phpunit/phpunit": "^11.0",
"roave/security-advisories": "dev-latest"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"audunru\\ModelHistory\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"audunru\\ModelHistory\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"audunru\\ModelHistory\\ModelHistoryServiceProvider"
]
}
},
"scripts": {
"test": [
"php ./vendor/bin/phpunit"
],
"test-with-coverage": [
"XDEBUG_MODE=coverage php ./vendor/bin/phpunit --coverage-clover build/logs/clover.xml"
],
"fix": [
"php ./vendor/bin/php-cs-fixer fix --config .php-cs-fixer.dist.php"
],
"verify": [
"php ./vendor/bin/php-cs-fixer fix --config .php-cs-fixer.dist.php --dry-run",
"php ./vendor/bin/phpmd config,src,tests ansi phpmd-ruleset.xml",
"php ./vendor/bin/phpunit"
]
}
}