Skip to content

Commit

Permalink
Add infection (bamarni#110)
Browse files Browse the repository at this point in the history
  • Loading branch information
theofidry committed Jul 10, 2022
1 parent 0fc009a commit 254b81e
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 7 deletions.
13 changes: 8 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
composer.lock
vendor
vendor-bin/*/vendor
.phpunit.result.cache
.php-cs-fixer.cache
/composer.lock
/dist/
/tools/
/vendor/
/vendor-bin/*/vendor/
/.phive/
/.phpunit.result.cache
/.php-cs-fixer.cache
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
"require-dev": {
"ext-json": "*",
"composer/composer": "^2.0",
"ergebnis/composer-normalize": "~2.9 || ^2.28",
"php-cs-fixer/shim": "^3.8",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.8",
Expand All @@ -41,7 +40,8 @@
"config": {
"allow-plugins": {
"phpstan/extension-installer": true,
"ergebnis/composer-normalize": true
"ergebnis/composer-normalize": true,
"infection/extension-installer": true
},
"sort-packages": true
},
Expand Down
14 changes: 14 additions & 0 deletions infection.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"$schema": "vendor/infection/infection/resources/schema.json",
"source": {
"directories": [
"src"
]
},
"logs": {
"text": "dist/infection.txt"
},
"mutators": {
"@default": true
}
}

0 comments on commit 254b81e

Please sign in to comment.