-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
84 lines (84 loc) · 2.8 KB
/
composer.json
File metadata and controls
84 lines (84 loc) · 2.8 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
{
"name": "rcsofttech/audit-trail-bundle",
"description": "Enterprise-grade, high-performance Symfony audit trail bundle. Automatically track Doctrine entity changes with split-phase architecture, multiple transports (HTTP, Queue, Doctrine), and sensitive data masking.",
"type": "symfony-bundle",
"license": "MIT",
"keywords": [
"symfony-audit",
"symfony",
"audit",
"audit-trail",
"activity-log",
"doctrine",
"envers",
"compliance",
"data-integrity",
"hmac-signing",
"async-audit"
],
"support": {
"issues": "https://github.com/rcsofttech85/AuditTrailBundle/issues",
"source": "https://github.com/rcsofttech85/AuditTrailBundle"
},
"autoload": {
"psr-4": {
"Rcsofttech\\AuditTrailBundle\\": "src/"
}
},
"authors": [
{
"name": "Rahul Chavan",
"email": "rcsoftech85@gmail.com"
}
],
"minimum-stability": "stable",
"require": {
"php": "^8.4",
"symfony/framework-bundle": "^7.4|^8.0",
"doctrine/orm": "^3.6",
"doctrine/doctrine-bundle": "^3.1",
"symfony/security-bundle": "^7.4|^8.0",
"symfony/yaml": "^7.4|^8.0",
"symfony/var-exporter": "^7.4|^8.0",
"symfony/uid": "^7.4|^8.0",
"symfony/validator": "^7.4|^8.0",
"symfony/expression-language": "^7.4|^8.0",
"ext-mbstring": "*"
},
"require-dev": {
"phpunit/phpunit": "^13.1",
"symfony/phpunit-bridge": "^7.4|^8.0",
"phpstan/phpstan": "^2.0",
"friendsofphp/php-cs-fixer": "^3.60",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan-doctrine": "^2.0",
"spaze/phpstan-disallowed-calls": "^4.7",
"phpstan/phpstan-symfony": "*",
"phpstan/phpstan-strict-rules": "^2.0",
"infection/infection": "^0.32.0",
"dama/doctrine-test-bundle": "^8.6",
"easycorp/easyadmin-bundle": "^5.0",
"symfony/http-client": "^7.4|^8.0",
"symfony/messenger": "^7.4|^8.0"
},
"autoload-dev": {
"psr-4": {
"Rcsofttech\\AuditTrailBundle\\Tests\\": "tests/"
}
},
"suggest": {
"easycorp/easyadmin-bundle": "Required to use the provided AuditLogCrudController for a built-in dashboard.",
"symfony/http-client": "Required to enable the HTTP audit transport.",
"symfony/messenger": "Required to enable the queue transport and async database transport."
},
"scripts": {
"lint:md": "npx -y markdownlint-cli2 \"**/*.md\" \"#vendor\""
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true,
"infection/extension-installer": true
}
}
}