forked from sonata-project/EntityAuditBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 1.08 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": "simplethings/entity-audit-bundle",
"license": "LGPL-2.1",
"keywords": [
"Persistence",
"Database",
"Audit"
],
"description": "Audit for Doctrine Entities",
"require": {
"php": "^5.3.9|~7.0",
"doctrine/dbal": "~2.5",
"doctrine/orm": "~2.4"
},
"require-dev": {
"doctrine/doctrine-bundle": "~1.4",
"symfony/framework-bundle": "~2.7|~3.0",
"gedmo/doctrine-extensions": "^2.3.1",
"phpunit/phpunit": "~4.8.20",
"symfony/var-dumper": "^2.7"
},
"conflict": {
"gedmo/doctrine-extensions": "<2.3.1",
"symfony/framework-bundle": "<2.7",
"doctrine/doctrine-bundle": "<1.4"
},
"autoload": {
"psr-4": {
"SimpleThings\\EntityAudit\\": "src/SimpleThings/EntityAudit"
}
},
"autoload-dev": {
"psr-4": {
"SimpleThings\\EntityAudit\\Tests\\": "tests/SimpleThings/Tests/EntityAudit"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.x-dev"
}
}
}