From ac2f915f48bce41009cf4d00d482583f7a5bf083 Mon Sep 17 00:00:00 2001 From: Mark Sch Date: Thu, 21 Nov 2019 16:54:57 +0100 Subject: [PATCH] Fix up composer path elements --- composer.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/composer.json b/composer.json index 05d12fcb..e82b5d70 100644 --- a/composer.json +++ b/composer.json @@ -6,7 +6,7 @@ "cakephp", "acl" ], - "homepage": "http://cakephp.org", + "homepage": "https://cakephp.org", "license": "MIT", "authors": [ { @@ -16,7 +16,7 @@ ], "support": { "issues": "https://github.com/cakephp/acl/issues", - "forum": "http://stackoverflow.com/tags/cakephp", + "forum": "https://stackoverflow.com/tags/cakephp", "irc": "irc://irc.freenode.org/cakephp", "source": "https://github.com/cakephp/acl" }, @@ -30,13 +30,13 @@ }, "autoload": { "psr-4": { - "Acl\\": "src" + "Acl\\": "src/" } }, "autoload-dev": { "psr-4": { - "Acl\\Test\\": "tests", - "Cake\\Test\\": "vendor/cakephp/cakephp/tests" + "Acl\\Test\\": "tests/", + "Cake\\Test\\": "vendor/cakephp/cakephp/tests/" } } }