From 8dbbe4940d06ff061f17f37777bbc3229d4e023a Mon Sep 17 00:00:00 2001 From: jrfnl Date: Sun, 1 Aug 2021 04:08:59 +0200 Subject: [PATCH] Composer: fix `autoload-dev` directive This only allowed for the tests in the `tests/unit` directory, while there are also tests in the `tests/integration` directory. --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 7038f48..323501e 100644 --- a/composer.json +++ b/composer.json @@ -30,7 +30,7 @@ }, "autoload-dev": { "psr-4": { - "phpDocumentor\\Reflection\\": "tests/unit" + "phpDocumentor\\Reflection\\": ["tests/unit", "tests/integration"] } }, "extra": {