-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
94 lines (94 loc) · 3.52 KB
/
Copy pathcomposer.json
File metadata and controls
94 lines (94 loc) · 3.52 KB
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "minvws/audit-logger-bundle",
"description": "Generic audit logger bundle for symfony",
"keywords": [
"audit",
"logging",
"symfony"
],
"type": "symfony-bundle",
"license": "EUPL-1.2",
"require": {
"php": "^8.3",
"doctrine/doctrine-bundle": "^2.11 | ^3.0",
"doctrine/orm": "^2.0 | ^3.0",
"minvws/audit-logger": "^1.1.0",
"nesbot/carbon": "^2.70 | ^3.0",
"symfony/dependency-injection": "^6.0 | ^7.0 | ^8.0",
"symfony/http-kernel": "^6.0 | ^7.0 | ^8.0",
"symfony/uid": "^6.0 | ^7.0 | ^8.0"
},
"require-dev": {
"dg/bypass-finals": "^1.6",
"mockery/mockery": "^1.6.7",
"overtrue/phplint": "^5.5 | ^9.1",
"php-amqplib/rabbitmq-bundle": "^2.14",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-doctrine": "^2.0",
"phpstan/phpstan-mockery": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"phpstan/phpstan-symfony": "^2.0",
"phpunit/phpunit": "^12.0",
"slevomat/coding-standard": "^8.14",
"squizlabs/php_codesniffer": "^4.0",
"symfony/var-dumper": "^6.0 | ^7.0 | ^8.0"
},
"autoload": {
"psr-4": {
"MinVWS\\AuditLoggerBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MinVWS\\AuditLoggerBundle\\Tests\\": "tests/"
}
},
"suggest": {
"php-amqplib/rabbitmq-bundle": "To use the rabbitmq audit logger",
"doctrine/orm": "To use the doctrine audit logger"
},
"scripts": {
"lint": "XDEBUG_MODE=off phplint --exclude=vendor .",
"checkstyle": "XDEBUG_MODE=off phpcs",
"fixstyle": "XDEBUG_MODE=off phpcbf",
"checktype": "XDEBUG_MODE=off phpstan analyse --memory-limit=-1",
"checktype-ci": "XDEBUG_MODE=off phpstan analyse --memory-limit=-1 --error-format=prettyJson > phpstan.json",
"update-type-baseline": "XDEBUG_MODE=off phpstan --memory-limit=-1 --generate-baseline",
"test": "XDEBUG_MODE=off CREATE_SNAPSHOTS=false phpunit",
"test-report": "XDEBUG_MODE=coverage CREATE_SNAPSHOTS=false phpunit --coverage-text --coverage-html coverage/html",
"test-report-ci": "XDEBUG_MODE=coverage CREATE_SNAPSHOTS=false phpunit --log-junit=report-phpunit.xml --coverage-text --coverage-clover=coverage-phpunit.xml",
"update-test-snapshots": "XDEBUG_MODE=off UPDATE_SNAPSHOTS=true phpunit",
"checkall": [
"@lint",
"@checkstyle",
"@checktype",
"@test"
]
},
"scripts-descriptions": {
"lint": "Lint PHP files",
"checkstyle": "Check code style using php_codesniffer",
"fixstyle": "Fix code style using php_codesniffer",
"checktype": "Check code type using PHPStan",
"checktype-ci": "Check code type using PHPStan and output results in JSON format for CI",
"update-type-baseline": "Update PHPStan baseline",
"test": "Run PHPUnit tests",
"test-report": "Run PHPUnit tests with coverage report",
"update-test-snapshots": "Update PHPUnit snapshots",
"checkall": "Run all checks including test"
},
"extra": {
"branch-alias": {
"dev-main": "1.0-dev"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/package-versions-deprecated": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}