-
Notifications
You must be signed in to change notification settings - Fork 64
/
composer.json
46 lines (46 loc) · 1.31 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
{
"name": "data-dog/audit-bundle",
"type": "symfony-bundle",
"description": "Audit bundle for symfony2 and doctrine orm, logs any database change",
"keywords": ["audit", "log", "symfony2", "bundle", "doctrine", "orm"],
"homepage": "https://github.com/DATA-DOG/DataDogAuditBundle",
"license": "MIT",
"authors": [
{
"name": "DataDog Team",
"homepage": "https://datadog.lt"
},
{
"name": "Symfony2 Community",
"homepage": "https://github.com/DATA-DOG/DataDogAuditBundle/contributors"
}
],
"require": {
"php": ">=8.1",
"doctrine/dbal": "^3.2|^4.0",
"doctrine/doctrine-bundle": "^2.9",
"doctrine/orm": "^2.13|^3.0",
"symfony/security-bundle": "^6.4 | ^7.0",
"symfony/framework-bundle": "^6.4 | ^7.0",
"symfony/console": "^6.4 | ^7.0"
},
"require-dev": {
"ext-pdo": "*",
"ext-pdo_sqlite": "*",
"phpunit/phpunit": "^9",
"symfony/phpunit-bridge": "^6.4 | ^7.0"
},
"autoload": {
"files": [
"src/aliases.php"
],
"psr-4": {
"DataDog\\AuditBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"DataDog\\AuditBundle\\Tests\\": "tests"
}
}
}