From 967198cdebb8d6f1822f6e8a5a6af2cbb0e1e093 Mon Sep 17 00:00:00 2001 From: Jonathan Martz Date: Sun, 12 Jan 2025 11:57:45 +0100 Subject: [PATCH] add php unit with json printer --- composer.json | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 8af349f..cafe155 100644 --- a/composer.json +++ b/composer.json @@ -11,10 +11,15 @@ "classmap": [ "src/Client.php", "src/Settings.php", - "src/Collection.php"] + "src/Collection.php" + ] }, "require": { "php": "^8.1|^8.2", "ext-curl": "*" + }, + "require-dev": { + "phpunit/phpunit": "^11.5", + "tomasvotruba/phpunit-json-result-printer": "^0.2.1" } -} \ No newline at end of file +}