forked from DATA-DOG/DataDogAuditBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.39 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
{
"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": ">=7.4",
"doctrine/dbal": "^3.1.4",
"doctrine/orm": "^2.6",
"symfony/framework-bundle": "^4.4|^5.4|^6.0"
},
"require-dev": {
"ext-pdo": "*",
"ext-pdo_sqlite": "*",
"data-dog/pager-bundle": "^0.2",
"doctrine/doctrine-bundle": "^2.5",
"doctrine/doctrine-fixtures-bundle": "^3.4",
"knplabs/knp-menu-bundle": "^2.0",
"knplabs/knp-time-bundle": "^1.3",
"sensio/framework-extra-bundle": "^5.6",
"symfony/symfony": "^4.4|^5.4|^6.0"
},
"autoload": {
"psr-4": {
"DataDog\\AuditBundle\\": "src/DataDog/AuditBundle"
}
},
"autoload-dev": {
"psr-4": {
"": "example/src/"
}
},
"archive": {
"exclude": ["vendor", "tests", "*phpunit.xml", ".travis.yml", "example", "Makefile", "screenshots"]
},
"extra": {
"branch-alias": {
"dev-master": "0.1.x-dev"
}
}
}