-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathcomposer.json
57 lines (57 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
54
55
56
57
{
"name": "dama/doctrine-test-bundle",
"description": "Symfony bundle to isolate doctrine database tests and improve test performance",
"keywords": [
"symfony",
"doctrine",
"tests",
"testing",
"isolation",
"performance"
],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "David Maicher",
"email": "[email protected]"
}
],
"require": {
"php": ">= 8.1",
"doctrine/dbal": "^3.3 || ^4.0",
"doctrine/doctrine-bundle": "^2.11.0",
"psr/cache": "^2.0 || ^3.0",
"symfony/cache": "^6.4 || ^7.2",
"symfony/framework-bundle": "^6.4 || ^7.2"
},
"require-dev": {
"behat/behat": "^3.0",
"friendsofphp/php-cs-fixer": "^3.27",
"phpstan/phpstan": "^2.0",
"phpunit/phpunit": "^10.0 || ^11.0 || ^12.0",
"symfony/process": "^6.4 || ^7.2",
"symfony/yaml": "^6.4 || ^7.2"
},
"autoload": {
"psr-4": {
"DAMA\\DoctrineTestBundle\\": "src/DAMA/DoctrineTestBundle"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "8.x-dev"
}
},
"config": {
"sort-packages": true
},
"conflict": {
"phpunit/phpunit": "<10.0"
}
}