-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
58 lines (58 loc) · 1.66 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
{
"name": "infection/codeception-adapter",
"description": "Codeception Test Framework Adapter for Infection",
"type": "infection-extension",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Maks Rafalko",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Infection\\TestFramework\\Codeception\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Infection\\Tests\\TestFramework\\Codeception\\": "tests/phpunit"
},
"files": [
"tests/phpunit/Helpers.php"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"require": {
"php": "^8.1",
"infection/abstract-testframework-adapter": "^0.5.0",
"infection/include-interceptor": "^0.2.0",
"symfony/filesystem": "^5.0 || ^6.0 || ^7.0",
"symfony/process": "^5.0 || ^6.0 || ^7.0",
"symfony/yaml": "^5.0 || ^6.0 || ^7.0"
},
"extra": {
"infection": {
"class": "Infection\\TestFramework\\Codeception\\CodeceptionAdapterFactory"
}
},
"require-dev": {
"php-coveralls/php-coveralls": "^2.5",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-strict-rules": "^1.5",
"phpstan/phpstan-webmozart-assert": "^1.2",
"phpunit/phpunit": "^9.5",
"thecodingmachine/safe": "^1.3",
"vimeo/psalm": "^5.15"
},
"conflict": {
"codeception/codeception": "<5.0.0"
}
}