From 208fb0a87d7da4f78dbe5c191088310e089d0a67 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Viktor=20Sz=C3=A9pe?= Date: Sat, 4 May 2019 01:31:56 +0200 Subject: [PATCH] Namespace declarations should end in `\\` > Please note namespace declarations should end in `\\` to make sure the autoloader responds exactly. https://getcomposer.org/doc/04-schema.md#psr-0 --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 5e73c8aa6..6e004fedb 100644 --- a/composer.json +++ b/composer.json @@ -16,6 +16,6 @@ "codacy/coverage": "^1.4" }, "autoload": { - "psr-0": { "Sabberworm\\CSS": "lib/" } + "psr-0": { "Sabberworm\\CSS\\": "lib/" } } }