forked from dmaicher/doctrine-test-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 889 Bytes
/
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
{
"name": "dama/doctrine-test-bundle",
"description": "Symfony 2/3 bundle to isolate doctrine database tests and improve test performance",
"keywords": ["symfony", "symfony 2", "symfony 3", "doctrine", "tests", "isolation", "performance"],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "David Maicher",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1",
"symfony/framework-bundle": "~2.7|~3.0|~4.0",
"doctrine/dbal": "~2.5",
"doctrine/doctrine-bundle": "~1.4"
},
"require-dev": {
"phpunit/phpunit": "~6.0|~7.0",
"symfony/yaml": "~2.7|~3.0"
},
"autoload": {
"psr-4": {
"DAMA\\DoctrineTestBundle\\": "src/DAMA/DoctrineTestBundle"
}
},
"autoload-dev": {
"psr-4": { "Tests\\": "tests/" }
},
"extra": {
"branch-alias": {
"dev-master": "5.1.x-dev"
}
}
}