-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
88 lines (88 loc) · 3.2 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "brainbits/functional-test-helpers",
"type": "library",
"description": "brainbits controlling functional test helpers",
"license": "MIT",
"require": {
"php": "^8.3",
"thecodingmachine/safe": "^2.0"
},
"require-dev": {
"ext-dom": "*",
"ext-iconv": "*",
"ext-mbstring": "*",
"ext-simplexml": "*",
"ext-tidy": "*",
"brainbits/phpcs-standard": "^7.0",
"brainbits/phpstan-rules": "^3.1.2",
"dama/doctrine-test-bundle": "^8.0",
"doctrine/dbal": "^3.4",
"ergebnis/phpstan-rules": "^2.5.2",
"gemorroj/archive7z": "^5.3",
"jangregor/phpstan-prophecy": "^1.0.2",
"mikey179/vfsstream": "^1.6.11",
"monolog/monolog": "^2.3|^3.0",
"phpstan/phpstan": "^1.12.15",
"phpstan/phpstan-phpunit": "^1.4.2",
"phpstan/phpstan-symfony": "^1.4.13",
"phpunit/phpunit": "^11.4",
"psr/http-message": "^2.0",
"riverline/multipart-parser": "^2.1",
"slam/phpstan-extensions": "^6.5.0",
"squizlabs/php_codesniffer": "^3.10",
"symfony/browser-kit": "^7.0",
"symfony/console": "^7.0",
"symfony/dependency-injection": "^7.0",
"symfony/filesystem": "^7.0",
"symfony/framework-bundle": "^7.0",
"symfony/http-client": "^7.0",
"symfony/http-foundation": "^7.0",
"symfony/mime": "^7.0",
"symfony/security-core": "^7.0",
"symfony/security-csrf": "^7.0",
"symfony/uid": "^7.0",
"thecodingmachine/phpstan-safe-rule": "^1.2",
"thecodingmachine/phpstan-strict-rules": "^1.0"
},
"suggest": {
"ext-dom": "For mocking xml requests",
"ext-iconv": "For asserting zip files",
"ext-mbstring": "For asserting zip files",
"ext-json": "For json snapshot tests",
"ext-simplexml": "For mocking xml requests",
"ext-tidy": "For html snapshots",
"doctrine/dbal": "For schema trait",
"doctrine/event-manager": "For schema trait",
"dama/doctrine-test-bundle": "For schema trait, when using DAMA Static Driver",
"gemorroj/archive7z": "For 7z file support",
"monolog/monolog": "For http client mock trait",
"riverline/multipart-parser": "For multipart file uploads",
"symfony/browser-kit": "For request trait",
"symfony/console": "For console trait",
"symfony/filesystem": "For request trait",
"symfony/http-client": "For http client mock trait",
"symfony/http-foundation": "For request trait",
"symfony/framework-bundle": "For request trait, when using authLogin(). Requires version >= 5.1",
"symfony/security-core": "For request trait",
"symfony/uid": "For uuid trait"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"autoload": {
"psr-4": {
"Brainbits\\FunctionalTestHelpers\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Brainbits\\FunctionalTestHelpers\\Tests\\": "tests/"
}
}
}