diff --git a/composer.json b/composer.json
index 9965ebe6..91f340c1 100644
--- a/composer.json
+++ b/composer.json
@@ -2,6 +2,7 @@
"name": "shlinkio/shlink",
"type": "project",
"homepage": "http://shlink.io",
+ "description": "A PHP-based URL shortener application with analytics and management",
"license": "MIT",
"authors": [
{
@@ -36,12 +37,18 @@
},
"autoload": {
"psr-4": {
- "Acelaya\\UrlShortener\\": "src"
+ "Acelaya\\UrlShortener\\": "src",
+ "Shlinkio\\Shlink\\CLI\\": "module/CLI/src",
+ "Shlinkio\\Shlink\\Rest\\": "module/Rest/src",
+ "Shlinkio\\Shlink\\Core\\": "module/Core/src"
}
},
"autoload-dev": {
"psr-4": {
- "AcelayaTest\\UrlShortener\\": "tests"
+ "AcelayaTest\\UrlShortener\\": "tests",
+ "ShlinkioTest\\Shlink\\CLI\\": "module/CLI/test",
+ "ShlinkioTest\\Shlink\\Rest\\": "module/Rest/test",
+ "ShlinkioTest\\Shlink\\Core\\": "module/Core/test"
}
},
"scripts": {
diff --git a/config/autoload/services.global.php b/config/autoload/services.global.php
index 4d6cc40e..3277159e 100644
--- a/config/autoload/services.global.php
+++ b/config/autoload/services.global.php
@@ -1,5 +1,5 @@
get(EntityManager::class);
diff --git a/config/config.php b/config/config.php
index f835a11c..b27d8173 100644
--- a/config/config.php
+++ b/config/config.php
@@ -1,4 +1,5 @@
- src
- tests
+ module
config
public/index.php