generated from vjik/package-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 1.03 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
{
"name": "vjik/codeception-db-populator",
"type": "library",
"description": "Database populator for Codeception DB module",
"keywords": [
"codeception",
"codeception-module",
"db-testing",
"database-testing"
],
"license": "BSD-3-Clause",
"support": {
"issues": "https://github.com/vjik/codeception-db-populator/issues?state=open",
"source": "https://github.com/vjik/codeception-db-populator"
},
"minimum-stability": "stable",
"require": {
"php": "^8.0",
"ext-pdo": "*",
"codeception/codeception": "^5.0",
"codeception/module-db": "^3.0"
},
"require-dev": {
"vimeo/psalm": "^5.25",
"vlucas/phpdotenv": "^5.4"
},
"autoload": {
"psr-4": {
"Vjik\\Codeception\\DatabasePopulator\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Vjik\\Codeception\\DatabasePopulator\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true
}
}