From bff76e2a7685a1cd245d0b65641eb0fecdf587f0 Mon Sep 17 00:00:00 2001 From: Mark Sch Date: Sat, 2 Dec 2017 18:35:41 +0100 Subject: [PATCH] Use recommended trailing slash in PSR-4 --- composer.json | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/composer.json b/composer.json index 90b69f5beb1..e801b145a9b 100644 --- a/composer.json +++ b/composer.json @@ -46,7 +46,7 @@ }, "autoload": { "psr-4": { - "Cake\\": "src" + "Cake\\": "src/" }, "files": [ "src/Core/functions.php", @@ -57,15 +57,15 @@ }, "autoload-dev": { "psr-4": { - "Cake\\PHPStan\\": "tests/PHPStan", - "Cake\\Test\\": "tests", - "TestApp\\": "tests/test_app/TestApp", - "TestPlugin\\": "tests/test_app/Plugin/TestPlugin/src", - "TestPlugin\\Test\\": "tests/test_app/Plugin/TestPlugin/tests", - "TestPluginTwo\\": "tests/test_app/Plugin/TestPluginTwo/src", - "Company\\TestPluginThree\\": "tests/test_app/Plugin/Company/TestPluginThree/src", - "Company\\TestPluginThree\\Test\\": "tests/test_app/Plugin/Company/TestPluginThree/tests", - "PluginJs\\": "tests/test_app/Plugin/PluginJs/src" + "Cake\\PHPStan\\": "tests/PHPStan/", + "Cake\\Test\\": "tests/", + "TestApp\\": "tests/test_app/TestApp/", + "TestPlugin\\": "tests/test_app/Plugin/TestPlugin/src/", + "TestPlugin\\Test\\": "tests/test_app/Plugin/TestPlugin/tests/", + "TestPluginTwo\\": "tests/test_app/Plugin/TestPluginTwo/src/", + "Company\\TestPluginThree\\": "tests/test_app/Plugin/Company/TestPluginThree/src/", + "Company\\TestPluginThree\\Test\\": "tests/test_app/Plugin/Company/TestPluginThree/tests/", + "PluginJs\\": "tests/test_app/Plugin/PluginJs/src/" } }, "replace": {