-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
47 lines (47 loc) · 1.16 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
{
"name": "struggle-for-php/sfp-infection-mutator",
"description" : "Mutator for Infection",
"license": "BSD-3-Clause",
"keywords": [
"infection",
"mutator",
"mutant",
"is_numeric"
],
"autoload": {
"psr-4": {
"Sfp\\Infection\\Mutator\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"SfpTest\\Infection\\Mutator\\": "tests",
"Infection\\Tests\\": "infection/tests/"
}
},
"require": {
"php" : ">=7.3",
"infection/infection": "^0.13.4",
"nikic/php-parser": "^4.2"
},
"require-dev": {
"phpunit/phpunit": "^8.3",
"zendframework/zend-coding-standard": "2.0.0-alpha3",
"phpstan/phpstan": "^0.11.13",
"phpstan/phpstan-phpunit": "^0.11.2"
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"cs-check": "phpcs",
"cs-fix": "phpcbf"
},
"authors": [
{
"name" : "sasezaki",
"email" : "[email protected]",
"homepage" : "http://github.com/sasezaki",
"role" : "Developer"
}
]
}