From 09992583f15946c8ef71152c313006970779d720 Mon Sep 17 00:00:00 2001
From: Matthew Daly <450801+matthewbdaly@users.noreply.github.com>
Date: Fri, 12 Oct 2018 21:00:31 +0100
Subject: [PATCH] Added Infection integration
---
.gitignore | 2 ++
infection.json.dist | 11 +++++++++++
phpunit.xml | 3 +++
3 files changed, 16 insertions(+)
create mode 100644 infection.json.dist
diff --git a/.gitignore b/.gitignore
index 364fa8b..344818a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,3 +2,5 @@
.DS_Store
vendor/
composer.lock
+build/
+infection-log.txt
diff --git a/infection.json.dist b/infection.json.dist
new file mode 100644
index 0000000..b883a21
--- /dev/null
+++ b/infection.json.dist
@@ -0,0 +1,11 @@
+{
+ "timeout": 10,
+ "source": {
+ "directories": [
+ "src"
+ ]
+ },
+ "logs": {
+ "text": "infection-log.txt"
+ }
+}
\ No newline at end of file
diff --git a/phpunit.xml b/phpunit.xml
index 104bff9..fef6559 100644
--- a/phpunit.xml
+++ b/phpunit.xml
@@ -18,6 +18,9 @@
./src
+
+
+