From 859ab59f71b0c063347b1f099ff5fa98dbd6ade2 Mon Sep 17 00:00:00 2001 From: David Maus <dmaus@dmaus.name> Date: Mon, 25 Nov 2019 17:46:40 +0100 Subject: [PATCH] Require PHPUnit for development --- composer.json | 3 +++ phpunit.xml | 6 ++++++ 2 files changed, 9 insertions(+) create mode 100644 phpunit.xml diff --git a/composer.json b/composer.json index 59862a6..f347494 100644 --- a/composer.json +++ b/composer.json @@ -7,5 +7,8 @@ }, "require": { "guzzlehttp/guzzle": "~6.0" + }, + "require-dev": { + "phpunit/phpunit": "^8.4" } } diff --git a/phpunit.xml b/phpunit.xml new file mode 100644 index 0000000..48e0d4f --- /dev/null +++ b/phpunit.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?> +<phpunit bootstrap="vendor/autoload.php"> + <testsuite name="default"> + <directory suffix="Test.php">tests</directory> + </testsuite> +</phpunit> -- GitLab