-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
55 lines (55 loc) · 1.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
{
"name": "infection/phpspec-adapter",
"description": "PHPSpec Test Framework Adapter for Infection",
"type": "infection-extension",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Maks Rafalko",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Infection\\TestFramework\\PhpSpec\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Infection\\Tests\\TestFramework\\PhpSpec\\": "tests/phpunit"
},
"files": [
"tests/phpunit/Helpers.php"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"require": {
"php": "^7.4 || ^8.0",
"infection/abstract-testframework-adapter": "^0.5.0",
"infection/include-interceptor": "^0.2.3",
"symfony/filesystem": "^4.4 || ^5.0 || ^6.0 || ^7.0",
"symfony/process": "^4.4 || ^5.0 || ^6.0 || ^7.0",
"symfony/yaml": "^4.4 || ^5.0 || ^6.0 || ^7.0"
},
"extra": {
"infection": {
"class": "Infection\\TestFramework\\PhpSpec\\PhpSpecAdapterFactory"
}
},
"require-dev": {
"php-coveralls/php-coveralls": "^2.5",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^0.12.66",
"phpstan/phpstan-phpunit": "^0.12.17",
"phpstan/phpstan-strict-rules": "^0.12.8",
"phpstan/phpstan-webmozart-assert": "^0.12.8",
"phpunit/phpunit": "^9.5",
"thecodingmachine/safe": "^1.3",
"vimeo/psalm": "^4.12"
}
}