-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
45 lines (45 loc) · 1.11 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
{
"name": "codeception/module-doctrine",
"description": "Doctrine module for Codeception",
"license": "MIT",
"type": "library",
"keywords": [
"codeception",
"doctrine"
],
"authors": [
{
"name": "Michael Bodnarchuk"
},
{
"name": "Alex Kunin"
}
],
"homepage": "https://codeception.com/",
"require": {
"php": "^8.1",
"ext-json": "*",
"ext-pdo": "*",
"codeception/codeception": "^5.1"
},
"require-dev": {
"codeception/stub": "^4.1.3",
"doctrine/annotations": "^2.0.1",
"doctrine/data-fixtures": "^1.6",
"doctrine/orm": "^2.14 || ^3.0",
"phpstan/phpstan": "^1.10.58",
"symfony/cache": "^5.4.35 || ^6.4.3 || ^7.0",
"symfony/doctrine-bridge": "^5.4.35 || ^6.4.3 || ^7.0",
"symfony/uid": "^5.4.35 || ^6.4.3 || ^7.0"
},
"minimum-stability": "dev",
"autoload": {
"classmap": [
"src/"
]
},
"config": {
"classmap-authoritative": true,
"sort-packages": true
}
}