-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
75 lines (75 loc) · 2.2 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": "rajmundtoth0/laravel-auditing-elasticsearch-driver",
"description": "An Elasticsearch driver for the owen-it/laravel-auditing package.",
"keywords": [
"audit",
"elasticsearch",
"eloquent",
"es",
"laravel",
"log",
"logging",
"observer",
"tracking"
],
"type": "package",
"license": "MIT",
"support": {
"issues": "https://github.com/rajmundtoth0/laravel-auditing-elasticsearch-driver/issues",
"source": "https://github.com/rajmundtoth0/laravel-auditing-elasticsearch-driver"
},
"authors": [
{
"name": "Rajmund Toth",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.2",
"elasticsearch/elasticsearch": "^8.0",
"owen-it/laravel-auditing": "^13.0|^14.0",
"php-http/httplug": "^2.4"
},
"autoload": {
"psr-4": {
"rajmundtoth0\\AuditDriver\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"rajmundtoth0\\AuditDriver\\ElasticsearchAuditingServiceProvider"
]
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.70",
"larastan/larastan": "*",
"orchestra/testbench": "^8.21|^9.0|^10.0",
"php-http/mock-client": "^1.6",
"phpstan/phpstan": "^2.0.2",
"phpstan/phpstan-phpunit": "*",
"phpunit/phpunit": "^11.0",
"nyholm/psr7": "^1.8"
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse --no-progress",
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html=./Tests/CoverageReport/",
"test-coverage-ci": "vendor/bin/phpunit --coverage-clover=coverage.xml",
"cs": "vendor/bin/php-cs-fixer fix ./",
"cs-ci": "vendor/bin/php-cs-fixer fix --dry-run --diff --ansi ./"
},
"autoload-dev": {
"files": ["config/audit.php"],
"psr-4": {
"rajmundtoth0\\AuditDriver\\Tests\\": "Tests/",
"Workbench\\App\\": "workbench/app/"
}
}
}