-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 1.17 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
{
"name": "wedevelopnl/audit-scaffold",
"description": "Scaffolding for creating Audit Logs in Symfony and Doctrine",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Zan Baldwin",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"WeDevelop\\Audit\\": "src/"
}
},
"prefer-stable": true,
"require": {
"php": ">=8.2",
"doctrine/persistence": "^2.4 || ^3.0",
"symfony/http-foundation": "^7.0",
"symfony/security-core": "^7.0",
"symfony/translation": "^7.0"
},
"require-dev": {
"doctrine/orm": "^2.18 || ^3.0",
"doctrine/mongodb-odm": "^2.7",
"friendsofphp/php-cs-fixer": "^3.51",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-deprecation-rules": "^1.1"
},
"suggest": {
"doctrine/orm": "To store audit logs as entities in a relational database",
"doctrine/mongodb-odm": "To store audit logs as documents in MongoDB collections"
},
"config": {
"sort-packages": true,
"preferred-install": {
"*": "dist"
}
}
}