-
Notifications
You must be signed in to change notification settings - Fork 37
/
composer.json
59 lines (59 loc) · 1.88 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
{
"name": "lorenzo/audit-stash",
"description": "Flexible and rock solid audit log tracking plugin for cakephp",
"type": "cakephp-plugin",
"license": "MIT",
"require": {
"php": ">=8.1",
"cakephp/orm": "^5.0.0",
"ext-json": "*"
},
"require-dev": {
"cakephp/cakephp": "^5.0.0",
"phpunit/phpunit": "^10.1.0",
"cakephp/cakephp-codesniffer": "^5.0",
"cakephp/migrations": "^4.0.0",
"cakephp/elastic-search": "^4.0.0",
"friendsofcake/crud": "^7.0.0"
},
"suggest": {
"cakephp/elastic-search": "The default persister engine for audit-stash is elastic search and requires this plugin",
"friendsofcake/crud": "audit-stash provides Crud Action classes for displaying audit logs"
},
"autoload": {
"psr-4": {
"AuditStash\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AuditStash\\Test\\": "tests/",
"Cake\\Test\\": "vendor/cakephp/cakephp/tests/"
}
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "phpcs --colors --parallel=16 -p src/ tests/",
"cs-fix": "phpcbf --colors --parallel=16 -p src/ tests/",
"phpstan": "tools/phpstan analyse",
"psalm": "tools/psalm --show-info=false",
"stan": [
"@phpstan",
"@psalm"
],
"phpstan-tests": "tools/phpstan analyze -c tests/phpstan.neon",
"phpstan-baseline": "tools/phpstan --generate-baseline",
"psalm-baseline": "tools/psalm --set-baseline=psalm-baseline.xml",
"stan-setup": "phive install",
"test": "phpunit",
"coverage-test": "phpunit --stderr --coverage-clover=clover.xml"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}