-
-
Notifications
You must be signed in to change notification settings - Fork 261
/
composer.json
41 lines (41 loc) · 1.15 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
{
"name": "simplethings/entity-audit-bundle",
"type": "symfony-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",
"gedmo/doctrine-extensions": "^2.3.1",
"matthiasnoback/symfony-dependency-injection-test": "^1.0",
"phpunit/phpunit": "^4.8",
"symfony/framework-bundle": "~2.7|~3.0",
"symfony/var-dumper": "^2.7",
"fabpot/php-cs-fixer": "^1.11"
},
"conflict": {
"doctrine/dbal": "2.7.0",
"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"
}
}
}