File tree 2 files changed +23
-3
lines changed
2 files changed +23
-3
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " fusonic/api-documentation-bundle" ,
3
3
"license" : " MIT" ,
4
- "version" : " 0.0.13 " ,
4
+ "version" : " 0.0.14 " ,
5
5
"description" : " Symfony bundle for automated documentation with NelmioApiDocBundle." ,
6
6
"type" : " symfony-bundle" ,
7
7
"authors" : [
25
25
},
26
26
"require-dev" : {
27
27
"friendsofphp/php-cs-fixer" : " ^3.40" ,
28
+ "infection/infection" : " ^0.27.10" ,
28
29
"phpstan/phpstan" : " ^1.10.47" ,
29
30
"phpstan/phpstan-phpunit" : " ^1.3" ,
30
31
"phpstan/phpstan-strict-rules" : " ^1.5" ,
49
50
"phpstan" : " XDEBUG_MODE=off php -d memory_limit=2048M vendor/bin/phpstan analyse" ,
50
51
"phpcs-check" : " XDEBUG_MODE=off vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php -v --dry-run --diff --using-cache=yes" ,
51
52
"phpcs-fix" : " XDEBUG_MODE=off vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php -v --using-cache=yes" ,
53
+ "infection" : " XDEBUG_MODE=coverage vendor/bin/infection" ,
52
54
"test" : " XDEBUG_MODE=off vendor/bin/phpunit --testdox" ,
53
- "test-coverage" : " XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-text --coverage-cobertura=coverage/cobertura.xml --coverage-html=coverage/html"
55
+ "test-coverage" : " XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-text --coverage-cobertura=coverage/phpunit/ cobertura.xml --coverage-html=coverage/phpunit /html"
54
56
},
55
57
"config" : {
56
- "sort-packages" : true
58
+ "sort-packages" : true ,
59
+ "allow-plugins" : {
60
+ "infection/extension-installer" : true
61
+ }
57
62
}
58
63
}
Original file line number Diff line number Diff line change
1
+ {
2
+ "$schema" : "vendor/infection/infection/resources/schema.json" ,
3
+ "source" : {
4
+ "directories" : [
5
+ "src"
6
+ ]
7
+ } ,
8
+ "mutators" : {
9
+ "@default" : true
10
+ } ,
11
+ "logs" : {
12
+ "html" : "coverage/infection/infection.html"
13
+ } ,
14
+ "testFramework" :"phpunit" ,
15
+ }
You can’t perform that action at this time.
0 commit comments