-
Notifications
You must be signed in to change notification settings - Fork 24
/
composer.json
72 lines (72 loc) · 2.62 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "codeception/module-symfony",
"description": "Codeception module for Symfony framework",
"license": "MIT",
"type": "library",
"keywords": [
"codeception",
"functional testing",
"symfony"
],
"authors": [
{
"name": "Michael Bodnarchuk"
},
{
"name": "Gustavo Nieves",
"homepage": "https://medium.com/@ganieves"
}
],
"homepage": "https://codeception.com/",
"require": {
"php": "^8.1",
"ext-json": "*",
"codeception/codeception": "^5.0.8",
"codeception/lib-innerbrowser": "^3.1.1 | ^4.0"
},
"require-dev": {
"codeception/module-asserts": "^3.0",
"codeception/module-doctrine": "^3.1",
"doctrine/orm": "^2.10",
"symfony/browser-kit": "^5.4 | ^6.4 | ^7.2",
"symfony/cache": "^5.4 | ^6.4 | ^7.2",
"symfony/config": "^5.4 | ^6.4 | ^7.2",
"symfony/dependency-injection": "^5.4 | ^6.4 | ^7.2",
"symfony/dom-crawler": "^5.4 | ^6.4 | ^7.2",
"symfony/dotenv": "^5.4 | ^6.4 | ^7.2",
"symfony/error-handler": "^5.4 | ^6.4 | ^7.2",
"symfony/filesystem": "^5.4 | ^6.4 | ^7.2",
"symfony/form": "^5.4 | ^6.4 | ^7.2",
"symfony/framework-bundle": "^5.4 | ^6.4 | ^7.2",
"symfony/http-client": "^5.4 | ^6.4 | ^7.2",
"symfony/http-foundation": "^5.4 | ^6.4 | ^7.2",
"symfony/http-kernel": "^5.4 | ^6.4 | ^7.2",
"symfony/mailer": "^5.4 | ^6.4 | ^7.2",
"symfony/mime": "^5.4 | ^6.4 | ^7.2",
"symfony/notifier": "^5.4 | ^6.4 | ^7.2",
"symfony/options-resolver": "^5.4 | ^6.4 | ^7.2",
"symfony/property-access": "^5.4 | ^6.4 | ^7.2",
"symfony/property-info": "^5.4 | ^6.4 | ^7.2",
"symfony/routing": "^5.4 | ^6.4 | ^7.2",
"symfony/security-bundle": "^5.4 | ^6.4 | ^7.2",
"symfony/security-core": "^5.4 | ^6.4 | ^7.2",
"symfony/security-csrf": "^5.4 | ^6.4 | ^7.2",
"symfony/security-http": "^5.4 | ^6.4 | ^7.2",
"symfony/twig-bundle": "^5.4 | ^6.4 | ^7.2",
"symfony/validator": "^5.4 | ^6.4 | ^7.2",
"symfony/var-exporter": "^5.4 | ^6.4 | ^7.2",
"vlucas/phpdotenv": "^4.2 | ^5.4"
},
"suggest": {
"codeception/module-asserts": "Include traditional PHPUnit assertions in your tests",
"symfony/web-profiler-bundle": "Tool that gives information about the execution of requests"
},
"minimum-stability": "RC",
"autoload": {
"classmap": ["src/"]
},
"config": {
"classmap-authoritative": true,
"sort-packages": true
}
}