forked from sebastianbergmann/dbunit
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.11 KB
/
composer.json
File metadata and controls
48 lines (48 loc) · 1.11 KB
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
{
"name": "misantron/dbunit",
"description": "DbUnit fork supporting PHPUnit 10/11/12",
"type": "library",
"license": "MIT",
"keywords": [
"database",
"testing",
"dbunit"
],
"authors": [
{
"name": "Aleksandr Ivanov",
"email": "misantron@gmail.com",
"role": "Developer"
}
],
"require": {
"php": ">=8.1",
"ext-pdo": "*",
"phpunit/phpunit": "^10.5 || ^11.5 || ^12.0",
"symfony/yaml": "^6.4 || ^7.4 || ^8.0"
},
"require-dev": {
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^2.1",
"symplify/easy-coding-standard": "^13.0"
},
"autoload": {
"psr-4": {
"PHPUnit\\DbUnit\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PHPUnit\\DbUnit\\Tests\\": "tests/"
},
"files": [
"tests/_files/DatabaseTestUtility.php"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}