forked from DATA-DOG/DataDogAuditBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
64 lines (55 loc) · 1.45 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
54
55
56
57
58
59
60
61
62
63
64
{
"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": "http://github.com/DATA-DOG/DataDogAuditBundle",
"license": "MIT",
"authors": [
{
"name": "DataDog Team",
"homepage": "http://datadog.lt"
},
{
"name": "Symfony2 Community",
"homepage": "http://github.com/DATA-DOG/DataDogAuditBundle/contributors"
}
],
"require": {
"php": ">=5.4.0",
"symfony/framework-bundle": "~2.6|~3.0",
"doctrine/orm": "~2.4"
},
"require-dev": {
"php": ">=5.6.0",
"ext-pdo": "*",
"ext-pdo_sqlite": "*",
"symfony/symfony": "~2.7.0|~3.0",
"doctrine/orm": "~2.5.0",
"doctrine/doctrine-bundle": "~1.5",
"doctrine/doctrine-fixtures-bundle": "~2.2.0",
"sensio/framework-extra-bundle": "~3.0.9",
"knplabs/knp-menu-bundle": "~2.0",
"knplabs/knp-time-bundle": "~1.3",
"data-dog/pager-bundle": "~0.2",
"phpunit/phpunit": "~4.7.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"
}
}
}